summaryrefslogtreecommitdiffstats
path: root/src/globals.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-09-05 15:48:51 +0200
committerBram Moolenaar <Bram@vim.org>2020-09-05 15:48:51 +0200
commit8b5866ded6036f7adece26b6d16962bbd2d47842 (patch)
treea473e6759fd5a5dc6436a6502c0d51ddb077805a /src/globals.h
parent7dfc5ce7cf4a7f63370d7dce2e13f7410ca0230a (diff)
patch 8.2.1597: the channel source file is too bigv8.2.1597
Problem: The channel source file is too big. Solution: Move job related code to a new source file.
Diffstat (limited to 'src/globals.h')
-rw-r--r--src/globals.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/globals.h b/src/globals.h
index 7477992b1f..64341900ec 100644
--- a/src/globals.h
+++ b/src/globals.h
@@ -1902,6 +1902,9 @@ EXTERN int did_repeated_msg INIT(= 0);
// out_flush() when characters have been written.
EXTERN int ch_log_output INIT(= FALSE);
+// Whether a redraw is needed for appending a line to a buffer.
+EXTERN int channel_need_redraw INIT(= FALSE);
+
#define FOR_ALL_CHANNELS(ch) \
for ((ch) = first_channel; (ch) != NULL; (ch) = (ch)->ch_next)
#define FOR_ALL_JOBS(job) \