Skip to content

Commit 0bd052b

Browse files
committed
patch 8.0.1628: channel log doesn't mention exiting
Problem: Channel log doesn't mention exiting. Solution: Add a ch_log() call in getout().
1 parent 7735daf commit 0bd052b

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

src/main.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1389,6 +1389,9 @@ getout(int exitval)
13891389
win_T *wp;
13901390

13911391
exiting = TRUE;
1392+
#if defined(FEAT_JOB_CHANNEL)
1393+
ch_log(NULL, "Exiting...");
1394+
#endif
13921395

13931396
/* When running in Ex mode an error causes us to exit with a non-zero exit
13941397
* code. POSIX requires this, although it's not 100% clear from the

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -766,6 +766,8 @@ static char *(features[]) =
766766

767767
static int included_patches[] =
768768
{ /* Add new patch number below this line */
769+
/**/
770+
1628,
769771
/**/
770772
1627,
771773
/**/

0 commit comments

Comments
 (0)