diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-04-21 00:00:13 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-04-21 00:00:13 +0200 |
commit | ad3ec76bb8030b9a1d3f0a49c374d0de2383b977 (patch) | |
tree | 6cc66e85aa0b54ce4ee2e9fcd47987963f022c57 /src/edit.c | |
parent | 037c54f261818439755d56e318da068f97997fb5 (diff) | |
download | vim-git-ad3ec76bb8030b9a1d3f0a49c374d0de2383b977.tar.gz |
patch 8.1.1194: typos and small problems in source filesv8.1.1194
Problem: Typos and small problems in source files.
Solution: Small fixes.
Diffstat (limited to 'src/edit.c')
-rw-r--r-- | src/edit.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/edit.c b/src/edit.c index 43c8a8b63..483ef4abc 100644 --- a/src/edit.c +++ b/src/edit.c @@ -4558,10 +4558,8 @@ ins_esc( /* Re-enable bracketed paste mode. */ out_str(T_BE); - /* - * When recording or for CTRL-O, need to display the new mode. - * Otherwise remove the mode message. - */ + // When recording or for CTRL-O, need to display the new mode. + // Otherwise remove the mode message. if (reg_recording != 0 || restart_edit != NUL) showmode(); else if (p_smd && (got_int || !skip_showmode())) |