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.3 / 6.3.087 < prev    next >
Encoding:
Internet Message Format  |  2005-09-24  |  1.4 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.3.087
  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.3.087
  11. Problem:    MS-DOS: Crash. (Jason Hood)
  12. Solution:   Don't call fname_case() with a NULL pointer.
  13. Files:        src/ex_cmds.c
  14.  
  15.  
  16. *** ../vim-6.3.086/src/ex_cmds.c    Thu Jan 13 17:38:30 2005
  17. --- src/ex_cmds.c    Thu Jul 21 22:23:54 2005
  18. ***************
  19. *** 2613,2619 ****
  20.   # ifdef USE_LONG_FNAME
  21.       if (USE_LONG_FNAME)
  22.   # endif
  23. !         fname_case(sfname, 0);   /* set correct case for short file name */
  24.   #endif
  25.   
  26.   #ifdef FEAT_LISTCMDS
  27. --- 2613,2620 ----
  28.   # ifdef USE_LONG_FNAME
  29.       if (USE_LONG_FNAME)
  30.   # endif
  31. !         if (sfname != NULL)
  32. !         fname_case(sfname, 0);   /* set correct case for sfname */
  33.   #endif
  34.   
  35.   #ifdef FEAT_LISTCMDS
  36. *** ../vim-6.3.086/src/version.c    Fri Jul 29 09:59:24 2005
  37. --- src/version.c    Sun Sep 25 13:12:44 2005
  38. ***************
  39. *** 643,644 ****
  40. --- 643,646 ----
  41.   {   /* Add new patch number below this line */
  42. + /**/
  43. +     87,
  44.   /**/
  45.  
  46. -- 
  47. MESKIMEN'S LAW
  48.     There's never time to do it right, but always time to do it over.
  49.  
  50.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  51. ///        Sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  52. \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
  53.  \\\     Buy LOTR 3 and help AIDS victims -- http://ICCF.nl/lotr.html   ///
  54.