0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

updated for version 7.1-104

This commit is contained in:
Bram Moolenaar
2007-09-13 16:26:47 +00:00
parent a84b10685c
commit 61abfd1171
9 changed files with 48 additions and 31 deletions

View File

@@ -641,7 +641,7 @@ getcmdline(firstc, count, indent)
{
++no_mapping;
++allow_keys;
c = safe_vgetc();
c = plain_vgetc();
--no_mapping;
--allow_keys;
/* CTRL-\ e doesn't work when obtaining an expression. */
@@ -1091,11 +1091,11 @@ getcmdline(firstc, count, indent)
#endif
putcmdline('"', TRUE);
++no_mapping;
i = c = safe_vgetc(); /* CTRL-R <char> */
i = c = plain_vgetc(); /* CTRL-R <char> */
if (i == Ctrl_O)
i = Ctrl_R; /* CTRL-R CTRL-O == CTRL-R CTRL-R */
if (i == Ctrl_R)
c = safe_vgetc(); /* CTRL-R CTRL-R <char> */
c = plain_vgetc(); /* CTRL-R CTRL-R <char> */
--no_mapping;
#ifdef FEAT_EVAL
/*