# HG changeset patch # User Bram Moolenaar # Date 1548941408 -3600 # Node ID 60e13da09d07eb3d06df201f6b063c365ca0816a # Parent 9ee6d98bfee4fd8a08737f57ad439e759d030331 patch 8.1.0860: debug lines left in the code commit https://github.com/vim/vim/commit/77255cab7447792d781752707c8e163c838ec996 Author: Bram Moolenaar 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. diff --git a/src/edit.c b/src/edit.c --- 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" 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; diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -784,6 +784,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 860, +/**/ 859, /**/ 858,