summaryrefslogtreecommitdiffstats
path: root/src/channel.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-05-13 13:40:16 +0200
committerBram Moolenaar <Bram@vim.org>2020-05-13 13:40:16 +0200
commit03a9f848175b182372fb33403998059724a8bf31 (patch)
tree473f2bb5d40cffb5821443a2956a6c700c1fff44 /src/channel.c
parentd502aa4c10771ec8eb570345ec5e124c4a4b7cd0 (diff)
patch 8.2.0747: cannot forcefully close all popupsv8.2.0747
Problem: Cannot forcefully close all popups. Solution: Add the "force" argument to popup_clear(). Use it after running a test. Put back the check for a popup when editing a file.
Diffstat (limited to 'src/channel.c')
-rw-r--r--src/channel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/channel.c b/src/channel.c
index 0e432f9afa..1fcb8451cb 100644
--- a/src/channel.c
+++ b/src/channel.c
@@ -156,9 +156,9 @@ ch_logfile(char_u *fname, char_u *opt)
if (log_fd != NULL)
{
if (*fname != NUL)
- ch_log(NULL, "closing, opening %s", fname);
+ ch_log(NULL, "closing this logfile, opening %s", fname);
else
- ch_log(NULL, "closing");
+ ch_log(NULL, "closing logfile");
fclose(log_fd);
}