summaryrefslogtreecommitdiffstats
path: root/src/edit.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-01-31 14:29:42 +0100
committerBram Moolenaar <Bram@vim.org>2019-01-31 14:29:42 +0100
commit77255cab7447792d781752707c8e163c838ec996 (patch)
tree533a005e497dcfa7f558c6fac9149b0b1658ed6c /src/edit.c
parentc45eb770a5988734ff2c572e5e2ce307158c33c8 (diff)
patch 8.1.0860: debug lines left in the codev8.1.0860
Problem: Debug lines left in the code. Solution: Delete the lines.
Diffstat (limited to 'src/edit.c')
-rw-r--r--src/edit.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/edit.c b/src/edit.c
index b226636aaa..de1666cc5e 100644
--- 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;