summaryrefslogtreecommitdiffstats
path: root/src/message.c
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-08-14 14:49:50 +0100
committerBram Moolenaar <Bram@vim.org>2022-08-14 14:49:50 +0100
commit28c162f6f1f525882a9a60f10ab4836dee7eb59f (patch)
tree3467ccd578d063cbab7438720fa8c9241d67e820 /src/message.c
parenta4d158b3c839e96ed98ff87c7b7124ff4518c4ff (diff)
patch 9.0.0207: stacktrace not shown when debuggingv9.0.0207
Problem: Stacktrace not shown when debugging. Solution: Set msg_scroll in msg_source(). (closes #10917)
Diffstat (limited to 'src/message.c')
-rw-r--r--src/message.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/message.c b/src/message.c
index 715c7beb5a..ec128bd425 100644
--- a/src/message.c
+++ b/src/message.c
@@ -531,6 +531,7 @@ msg_source(int attr)
return;
recursive = TRUE;
+ msg_scroll = TRUE; // this will take more than one line
++no_wait_return;
p = get_emsg_source();
if (p != NULL)
@@ -746,7 +747,6 @@ emsg_core(char_u *s)
}
emsg_on_display = TRUE; // remember there is an error message
- ++msg_scroll; // don't overwrite a previous message
attr = HL_ATTR(HLF_E); // set highlight mode for error messages
if (msg_scrolled != 0)
need_wait_return = TRUE; // needed in case emsg() is called after
@@ -759,6 +759,7 @@ emsg_core(char_u *s)
#endif
/*
* Display name and line number for the source of the error.
+ * Sets "msg_scroll".
*/
msg_source(attr);