diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-07-10 16:15:04 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-07-10 16:15:04 +0200 |
commit | 3b849af90a691f2a9999222b0e69bd161bebc5e2 (patch) | |
tree | 6f0694c395b49fd26bf53b6c2860b5a6e5dd7178 /src | |
parent | 7ba343e63483b09584d4bf5a997fc1d1c09f19f7 (diff) | |
download | vim-git-3b849af90a691f2a9999222b0e69bd161bebc5e2.tar.gz |
patch 8.1.1658: debug statements included in patchv8.1.1658
Problem: Debug statements included in patch.
Solution: Remove the debug statements.
Diffstat (limited to 'src')
-rw-r--r-- | src/normal.c | 1 | ||||
-rw-r--r-- | src/popupwin.c | 1 | ||||
-rw-r--r-- | src/version.c | 2 |
3 files changed, 2 insertions, 2 deletions
diff --git a/src/normal.c b/src/normal.c index 6cac55315..ce1acb555 100644 --- a/src/normal.c +++ b/src/normal.c @@ -2325,7 +2325,6 @@ do_mouse( ui_may_remove_balloon(); if (p_bevalterm) { -ch_log(NULL, "setting balloon timer"); profile_setlimit(p_bdlay, &bevalexpr_due); bevalexpr_due_set = TRUE; } diff --git a/src/popupwin.c b/src/popupwin.c index 59aaa6617..c6355e122 100644 --- a/src/popupwin.c +++ b/src/popupwin.c @@ -1437,7 +1437,6 @@ check_mouse_moved(win_T *wp, win_T *mouse_wp) { typval_T res; -ch_log(NULL, "closing popup %d", wp->w_id); res.v_type = VAR_NUMBER; res.vval.v_number = -2; // Careful: this makes "wp" invalid. diff --git a/src/version.c b/src/version.c index fb21f0771..5cede94f9 100644 --- a/src/version.c +++ b/src/version.c @@ -778,6 +778,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1658, +/**/ 1657, /**/ 1656, |