To: vim-dev@vim.org Subject: Patch 6.1.197 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit ------------ Patch 6.1.197 Problem: ":help " (resulting in <1c><0e>) gives an error message. (Servatius Brandt) Solution: Double the backslash in "CTRL-\". Files: src/ex_cmds.c *** ../vim61.196/src/ex_cmds.c Mon Sep 23 21:32:08 2002 --- src/ex_cmds.c Wed Sep 25 22:05:20 2002 *************** *** 4727,4737 **** --- 4727,4741 ---- STRCPY(d, "CTRL-"); d += 5; if (*s < ' ') + { #ifdef EBCDIC *d++ = CtrlChar(*s); #else *d++ = *s + '@'; #endif + if (d[-1] == '\\') + *d++ = '\\'; /* double a backslash */ + } else *d++ = *++s; if (s[1] != NUL && s[1] != '_') *** ../vim61.196/src/version.c Mon Sep 23 21:35:44 2002 --- src/version.c Wed Sep 25 22:08:41 2002 *************** *** 608,609 **** --- 608,611 ---- { /* Add new patch number below this line */ + /**/ + 197, /**/ -- hundred-and-one symptoms of being an internet addict: 44. Your friends no longer send you e-mail...they just log on to your IRC channel. /// 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 ///