diff options
author | Bram Moolenaar <Bram@vim.org> | 2007-09-13 16:26:47 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2007-09-13 16:26:47 +0000 |
commit | 61abfd1171924eddc619a9bb13dfea788a16ac2e (patch) | |
tree | 3b63f79912a1ceccea9c52b9bcaee9e133e30425 /src/digraph.c | |
parent | a84b10685c8f2c4cc1f7846fddae6b29bc4aee0f (diff) | |
download | vim-git-61abfd1171924eddc619a9bb13dfea788a16ac2e.tar.gz |
updated for version 7.1-104v7.1.104
Diffstat (limited to 'src/digraph.c')
-rw-r--r-- | src/digraph.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/digraph.c b/src/digraph.c index e557680ec..a0f16273d 100644 --- a/src/digraph.c +++ b/src/digraph.c @@ -2028,7 +2028,7 @@ get_digraph(cmdline) ++no_mapping; ++allow_keys; - c = safe_vgetc(); + c = plain_vgetc(); --no_mapping; --allow_keys; if (c != ESC) /* ESC cancels CTRL-K */ @@ -2050,7 +2050,7 @@ get_digraph(cmdline) #endif ++no_mapping; ++allow_keys; - cc = safe_vgetc(); + cc = plain_vgetc(); --no_mapping; --allow_keys; if (cc != ESC) /* ESC cancels CTRL-K */ @@ -2350,7 +2350,7 @@ keymap_init() if (*curbuf->b_p_keymap == NUL) { /* Stop any active keymap and clear the table. Also remove - * b:keymap_unload, as no keymap is active now. */ + * b:keymap_name, as no keymap is active now. */ keymap_unload(); do_cmdline_cmd((char_u *)"unlet! b:keymap_name"); } |