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.1.233 < prev    next >
Encoding:
Internet Message Format  |  2002-10-26  |  1.5 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.1.233
  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.1.233
  11. Problem:    ":help expr-||" does not work.
  12. Solution:   Don't use the '|' as a command separator
  13. Files:        src/ex_cmds.c
  14.  
  15.  
  16. *** ../vim61.232/src/ex_cmds.c    Sun Oct 13 18:48:35 2002
  17. --- src/ex_cmds.c    Sun Oct 27 14:05:10 2002
  18. ***************
  19. *** 4402,4408 ****
  20.        */
  21.       for (arg = eap->arg; *arg; ++arg)
  22.       {
  23. !         if (*arg == '\n' || *arg == '\r' || (*arg == '|' && arg[1] != NUL))
  24.           {
  25.           *arg++ = NUL;
  26.           eap->nextcmd = arg;
  27. --- 4402,4409 ----
  28.        */
  29.       for (arg = eap->arg; *arg; ++arg)
  30.       {
  31. !         if (*arg == '\n' || *arg == '\r'
  32. !             || (*arg == '|' && arg[1] != NUL && arg[1] != '|'))
  33.           {
  34.           *arg++ = NUL;
  35.           eap->nextcmd = arg;
  36. *** ../vim61.232/src/version.c    Sun Oct 20 12:46:37 2002
  37. --- src/version.c    Sun Oct 27 14:07:11 2002
  38. ***************
  39. *** 608,609 ****
  40. --- 608,611 ----
  41.   {   /* Add new patch number below this line */
  42. + /**/
  43. +     233,
  44.   /**/
  45.  
  46. -- 
  47. Have you heard about the new Barbie doll?  It's called Divorce 
  48. Barbie.  It comes with all of Ken's stuff. 
  49.  
  50.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  51. ///          Creator of Vim - Vi IMproved -- http://www.vim.org          \\\
  52. \\\           Project leader for A-A-P -- http://www.a-a-p.org           ///
  53.  \\\ Lord Of The Rings helps Uganda - http://iccf-holland.org/lotr.html ///
  54.