summaryrefslogtreecommitdiff
path: root/src/term.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-03-22 16:19:45 +0100
committerBram Moolenaar <Bram@vim.org>2021-03-22 16:19:45 +0100
commit4c86830fc578bcb47a51cf0983da5388cdbfe6cc (patch)
tree8c2b04a8cfaf7e00f8a20e38a5e5d09a5043b951 /src/term.c
parent09f8b3a02200a1900a8bb41d7436f9d17ebd2d1b (diff)
downloadvim-git-4c86830fc578bcb47a51cf0983da5388cdbfe6cc.tar.gz
patch 8.2.2638: cannot write a message to the terminal from the GUIv8.2.2638
Problem: Cannot write a message to the terminal from the GUI. Solution: Add :echoconsole and use it in the test runner. (issue #7975)
Diffstat (limited to 'src/term.c')
-rw-r--r--src/term.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/term.c b/src/term.c
index d2ada6c2b..8ce577ec1 100644
--- a/src/term.c
+++ b/src/term.c
@@ -2545,7 +2545,7 @@ out_flush(void)
// set out_pos to 0 before ui_write, to avoid recursiveness
len = out_pos;
out_pos = 0;
- ui_write(out_buf, len);
+ ui_write(out_buf, len, FALSE);
#ifdef FEAT_JOB_CHANNEL
if (ch_log_output)
{