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.004 < prev    next >
Encoding:
Internet Message Format  |  2001-09-27  |  1.4 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.0.004
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. ------------
  6.  
  7. Patch 6.0.004
  8. Problem:    The find/replace dialog doesn't reuse a previous argument
  9.         properly.
  10. Solution:   After removing a "\V" terminate the string. (Zwane Mwaikambo)
  11. Files:        src/gui.c
  12.  
  13.  
  14. *** ../vim60.3/src/gui.c    Tue Sep 25 11:38:35 2001
  15. --- src/gui.c    Fri Sep 28 17:29:55 2001
  16. ***************
  17. *** 3993,3999 ****
  18.   
  19.           /* Remove "\V" */
  20.           if (len >= 2 && STRNCMP(text, "\\V", 2) == 0)
  21. !         mch_memmove(text, text + 2, (size_t)(len - 2));
  22.   
  23.           /* Recognize "\<text\>" and remove. */
  24.           if (len >= 4
  25. --- 3993,3999 ----
  26.   
  27.           /* Remove "\V" */
  28.           if (len >= 2 && STRNCMP(text, "\\V", 2) == 0)
  29. !         mch_memmove(text, text + 2, (size_t)(len - 1));
  30.   
  31.           /* Recognize "\<text\>" and remove. */
  32.           if (len >= 4
  33. *** ../vim60.3/src/version.c    Fri Sep 28 17:39:10 2001
  34. --- src/version.c    Fri Sep 28 17:35:47 2001
  35. ***************
  36. *** 608,609 ****
  37. --- 608,611 ----
  38.   {   /* Add new patch number below this line */
  39. + /**/
  40. +     4,
  41.   /**/
  42.  
  43. --  
  44. Latest survey shows that 3 out of 4 people make up 75% of the 
  45. world's population.
  46.  
  47.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  48. (((   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   )))
  49.  \\\  Help me helping AIDS orphans in Uganda - http://iccf-holland.org  ///
  50.