summaryrefslogtreecommitdiffstats
path: root/src/main.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2006-05-03 21:28:47 +0000
committerBram Moolenaar <Bram@vim.org>2006-05-03 21:28:47 +0000
commit8b2d9c4318eb24275d69bdf8b66680b544c1908d (patch)
tree1f07c7ad71eb34c5b8fc215a9218c75b38938a3d /src/main.c
parent9c102387aff079b513533e93bb2a8109ccc1492c (diff)
updated for version 7.0g02
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.c b/src/main.c
index 276547bbc9..2a90cc3580 100644
--- a/src/main.c
+++ b/src/main.c
@@ -3606,11 +3606,11 @@ server_to_input_buf(str)
* B set - backslashes are *not* treated specially
* k set - keycodes are *not* reverse-engineered
* < unset - <Key> sequences *are* interpreted
- * The last parameter of replace_termcodes() is TRUE so that the <lt>
- * sequence is recognised - needed for a real backslash.
+ * The last but one parameter of replace_termcodes() is TRUE so that the
+ * <lt> sequence is recognised - needed for a real backslash.
*/
p_cpo = (char_u *)"Bk";
- str = replace_termcodes((char_u *)str, &ptr, FALSE, TRUE);
+ str = replace_termcodes((char_u *)str, &ptr, FALSE, TRUE, FALSE);
p_cpo = cpo_save;
if (*ptr != NUL) /* trailing CTRL-V results in nothing */