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.247 < prev    next >
Encoding:
Internet Message Format  |  2004-02-08  |  1.5 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.2.247
  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.247 (after 6.2.193)
  11. Problem:    When using a search pattern from the viminfo file the last
  12.         character is replaced with a '/'.
  13. Solution:   Store the separator character in the right place. (Kelvin Lee)
  14. Files:        src/ex_getln.c
  15.  
  16.  
  17. *** ../vim-6.2.246/src/ex_getln.c    Sun Jan 18 21:27:18 2004
  18. --- src/ex_getln.c    Mon Feb  9 10:20:37 2004
  19. ***************
  20. *** 4764,4770 ****
  21.               sep = val[1];
  22.               --len;
  23.               mch_memmove(val, val + 2, (size_t)len);
  24. !             val[len + 1] = (sep == ' ' ? NUL : sep);
  25.           }
  26.           else
  27.           {
  28. --- 4766,4772 ----
  29.               sep = val[1];
  30.               --len;
  31.               mch_memmove(val, val + 2, (size_t)len);
  32. !             val[len] = (sep == ' ' ? NUL : sep);
  33.           }
  34.           else
  35.           {
  36. *** ../vim-6.2.246/src/version.c    Sun Feb  8 17:09:51 2004
  37. --- src/version.c    Mon Feb  9 10:26:51 2004
  38. ***************
  39. *** 639,640 ****
  40. --- 639,642 ----
  41.   {   /* Add new patch number below this line */
  42. + /**/
  43. +     247,
  44.   /**/
  45.  
  46. -- 
  47. From "know your smileys":
  48.  :-)    Funny
  49.  |-)    Funny Oriental
  50.  (-:    Funny Australian
  51.  
  52.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  53. ///        Sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  54. \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
  55.  \\\  Help AIDS victims, buy here: http://ICCF-Holland.org/click1.html  ///
  56.