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.0.180 < prev    next >
Encoding:
Internet Message Format  |  2002-02-03  |  1.5 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.0.180
  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.0.180
  11. Problem:    Expanding environment variables in a string that ends in a
  12.         backslash could go past the end of the string.
  13. Solution:   Detect the trailing backslash.
  14. Files:        src/misc1.c
  15.  
  16.  
  17. *** ../vim60.179/src/misc1.c    Mon Feb  4 22:30:34 2002
  18. --- src/misc1.c    Mon Feb  4 21:31:34 2002
  19. ***************
  20. *** 3054,3060 ****
  21.            * Recogize the start of a new name, for '~'.
  22.            */
  23.           at_start = FALSE;
  24. !         if (src[0] == '\\')
  25.           {
  26.           *dst++ = *src++;
  27.           --dstlen;
  28. --- 3054,3060 ----
  29.            * Recogize the start of a new name, for '~'.
  30.            */
  31.           at_start = FALSE;
  32. !         if (src[0] == '\\' && src[1] != NUL)
  33.           {
  34.           *dst++ = *src++;
  35.           --dstlen;
  36. *** ../vim60.179/src/version.c    Mon Feb  4 22:35:33 2002
  37. --- src/version.c    Mon Feb  4 22:36:19 2002
  38. ***************
  39. *** 608,609 ****
  40. --- 608,611 ----
  41.   {   /* Add new patch number below this line */
  42. + /**/
  43. +     180,
  44.   /**/
  45.  
  46. -- 
  47. hundred-and-one symptoms of being an internet addict:
  48. 208. Your goals for the future are obtaining an T1 connection and
  49.      a 30 gig hard drive.
  50.  
  51.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  52. (((   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   )))
  53.  \\\  Help me helping AIDS orphans in Uganda - http://iccf-holland.org  ///
  54.