To: vim-dev@vim.org Subject: Patch 6.1.233 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit ------------ Patch 6.1.233 Problem: ":help expr-||" does not work. Solution: Don't use the '|' as a command separator Files: src/ex_cmds.c *** ../vim61.232/src/ex_cmds.c Sun Oct 13 18:48:35 2002 --- src/ex_cmds.c Sun Oct 27 14:05:10 2002 *************** *** 4402,4408 **** */ for (arg = eap->arg; *arg; ++arg) { ! if (*arg == '\n' || *arg == '\r' || (*arg == '|' && arg[1] != NUL)) { *arg++ = NUL; eap->nextcmd = arg; --- 4402,4409 ---- */ for (arg = eap->arg; *arg; ++arg) { ! if (*arg == '\n' || *arg == '\r' ! || (*arg == '|' && arg[1] != NUL && arg[1] != '|')) { *arg++ = NUL; eap->nextcmd = arg; *** ../vim61.232/src/version.c Sun Oct 20 12:46:37 2002 --- src/version.c Sun Oct 27 14:07:11 2002 *************** *** 608,609 **** --- 608,611 ---- { /* Add new patch number below this line */ + /**/ + 233, /**/ -- Have you heard about the new Barbie doll? It's called Divorce Barbie. It comes with all of Ken's stuff. /// Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net \\\ /// Creator of Vim - Vi IMproved -- http://www.vim.org \\\ \\\ Project leader for A-A-P -- http://www.a-a-p.org /// \\\ Lord Of The Rings helps Uganda - http://iccf-holland.org/lotr.html ///