diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-02-16 00:00:28 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-02-16 00:00:28 +0100 |
commit | d634024b90c7ae6ff08c1970646f1bca91f5611f (patch) | |
tree | 04fe76a3821c02c5ba2030e64df6b5faf28ee40f /src/ex_cmds2.c | |
parent | 00590740081489db69f43d9f1c0e3f70e29ce6da (diff) | |
download | vim-git-d634024b90c7ae6ff08c1970646f1bca91f5611f.tar.gz |
patch 8.1.0928: stray log function callv8.1.0928
Problem: Stray log function call.
Solution: Remove the log function call.
Diffstat (limited to 'src/ex_cmds2.c')
-rw-r--r-- | src/ex_cmds2.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/ex_cmds2.c b/src/ex_cmds2.c index a72302571..4bf207272 100644 --- a/src/ex_cmds2.c +++ b/src/ex_cmds2.c @@ -1359,7 +1359,6 @@ check_due_timer(void) did_throw = FALSE; current_exception = NULL; save_vimvars(&vvsave); -ch_log(NULL, "calling timer callback"); timer->tr_firing = TRUE; timer_callback(timer); timer->tr_firing = FALSE; |