Mercurial > vim
changeset 15705:60e13da09d07 v8.1.0860
patch 8.1.0860: debug lines left in the code
commit https://github.com/vim/vim/commit/77255cab7447792d781752707c8e163c838ec996
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Jan 31 14:29:42 2019 +0100
patch 8.1.0860: debug lines left in the code
Problem: Debug lines left in the code.
Solution: Delete the lines.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 31 Jan 2019 14:30:08 +0100 |
parents | 9ee6d98bfee4 |
children | b33dc53cc3ff |
files | src/edit.c src/version.c |
diffstat | 2 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/edit.c +++ b/src/edit.c @@ -377,7 +377,6 @@ edit( ins_compl_clear(); /* clear stuff for CTRL-X mode */ #endif -ch_log(NULL, "ENTERING Insert mode"); /* * Trigger InsertEnter autocommands. Do not do this for "r<CR>" or "grx". */ @@ -1048,7 +1047,6 @@ doESCkey: if (cmdchar != 'r' && cmdchar != 'v' && c != Ctrl_C) ins_apply_autocmds(EVENT_INSERTLEAVE); did_cursorhold = FALSE; -ch_log(NULL, "LEAVING Insert mode"); return (c == Ctrl_O); } continue;