From 2e47cab715669bd0c89762217cbf77bd70cd82ac Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Fri, 27 Sep 2019 23:12:45 +0200 Subject: [PATCH] patch 8.1.2090: not clear why channel log file ends Problem: Not clear why channel log file ends. Solution: Add a "closing" line. --- src/channel.c | 6 ++++++ src/version.c | 2 ++ 2 files changed, 8 insertions(+) diff --git a/src/channel.c b/src/channel.c index e42c9575f..0ac971876 100644 --- a/src/channel.c +++ b/src/channel.c @@ -141,7 +141,13 @@ ch_logfile(char_u *fname, char_u *opt) FILE *file = NULL; if (log_fd != NULL) + { + if (*fname != NUL) + ch_log(NULL, "closing, opening %s", fname); + else + ch_log(NULL, "closing"); fclose(log_fd); + } if (*fname != NUL) { diff --git a/src/version.c b/src/version.c index 552f82a70..e595c7ab6 100644 --- a/src/version.c +++ b/src/version.c @@ -757,6 +757,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 2090, /**/ 2089, /**/ -- 2.50.1