home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / patches / 6.2.070 < prev    next >
Encoding:
Internet Message Format  |  2003-10-13  |  1.7 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.2.070
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. Mime-Version: 1.0
  6. Content-Type: text/plain; charset=ISO-8859-1
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 6.2.070 (after 6.2.069)
  11. Problem:    Still unused variable "new_st". (Bill McCarthy)
  12. Solution:   Move the declaration to the right block this time.
  13. Files:        src/tag.c
  14.  
  15.  
  16. *** ../vim-6.2.069/src/tag.c    Mon Aug 11 23:03:53 2003
  17. --- src/tag.c    Tue Aug 12 10:08:43 2003
  18. ***************
  19. *** 2961,2968 ****
  20.   
  21.               if (!do_strip)
  22.               {
  23. -             struct stat    new_st;
  24.               /* If the component exists in the file system, check
  25.                * that stripping it won't change the meaning of the
  26.                * file name.  First get information about the
  27. --- 2961,2966 ----
  28. ***************
  29. *** 2983,2988 ****
  30. --- 2981,2988 ----
  31.   #ifdef UNIX
  32.               if (do_strip)
  33.               {
  34. +                 struct stat    new_st;
  35.                   /* On Unix, the check for the unstripped file name
  36.                    * above works also for a symbolic link pointing to
  37.                    * a searchable directory.  But then the parent of
  38. *** ../vim-6.2.069/src/version.c    Mon Aug 11 23:03:53 2003
  39. --- src/version.c    Tue Aug 12 19:57:51 2003
  40. ***************
  41. *** 632,633 ****
  42. --- 632,635 ----
  43.   {   /* Add new patch number below this line */
  44. + /**/
  45. +     70,
  46.   /**/
  47.  
  48. -- 
  49. hundred-and-one symptoms of being an internet addict:
  50. 97. Your mother tells you to remember something, and you look for
  51.     a File/Save command.
  52.  
  53.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  54. ///          Creator of Vim - Vi IMproved -- http://www.Vim.org          \\\
  55. \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
  56.  \\\  Help AIDS victims, buy here: http://ICCF-Holland.org/click1.html  ///
  57.