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.069 < prev    next >
Encoding:
Internet Message Format  |  2001-11-03  |  1.7 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.0.069
  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.069
  11. Problem:    Using "K" on a word that includes a "!" causes a "No previous
  12.         command" error, because the "!" is expanded. (Craig Jeffries)
  13. Solution:   Put a backslash before the "!".
  14. Files:        src/normal.c
  15.  
  16.  
  17. *** ../vim60.68/src/normal.c    Thu Nov  1 14:51:27 2001
  18. --- src/normal.c    Sun Nov  4 13:07:22 2001
  19. ***************
  20. *** 4669,4675 ****
  21.       if (cmdchar == '*' || cmdchar == '#')
  22.       aux_ptr = (char_u *)(p_magic ? "/?.*~[^$\\" : "/?^$\\");
  23.       else if (cmdchar == 'K' && *p_kp != NUL)
  24. !     aux_ptr = escape_chars;
  25.       else
  26.       /* Don't escape spaces and Tabs in a tag with a backslash */
  27.       aux_ptr = (char_u *)"\\|\"";
  28. --- 4669,4675 ----
  29.       if (cmdchar == '*' || cmdchar == '#')
  30.       aux_ptr = (char_u *)(p_magic ? "/?.*~[^$\\" : "/?^$\\");
  31.       else if (cmdchar == 'K' && *p_kp != NUL)
  32. !     aux_ptr = (char_u *)" \t\\\"|!";
  33.       else
  34.       /* Don't escape spaces and Tabs in a tag with a backslash */
  35.       aux_ptr = (char_u *)"\\|\"";
  36. *** ../vim60.68/src/version.c    Sun Nov  4 13:15:58 2001
  37. --- src/version.c    Sun Nov  4 13:13:41 2001
  38. ***************
  39. *** 608,609 ****
  40. --- 608,611 ----
  41.   {   /* Add new patch number below this line */
  42. + /**/
  43. +     69,
  44.   /**/
  45.  
  46. -- 
  47. The budget process was invented by an alien race of sadistic beings who
  48. resemble large cats.
  49.                 (Scott Adams - The Dilbert principle)
  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.