0
0
mirror of https://github.com/vim/vim.git synced 2025-09-27 04:14:06 -04:00

updated for version 7.0g02

This commit is contained in:
Bram Moolenaar
2006-05-03 21:28:47 +00:00
parent 9c102387af
commit 8b2d9c4318
5 changed files with 51 additions and 27 deletions

View File

@@ -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 */