aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ex_cmds.c
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-04-04 06:13:42 +0800
committerGitHub <noreply@github.com>2022-04-04 06:13:42 +0800
commita93b55273f76e5fe23f614e691536435999f4452 (patch)
tree85fd7d31fc2dc1b7dfbd2695002a24908c5ff707 /src/nvim/ex_cmds.c
parentd73bf3138a802bb6c1c654cd913d4e91932287f8 (diff)
parent559dcf45a1ff20b2f1a315b553fc36d4d60003f7 (diff)
downloadrneovim-a93b55273f76e5fe23f614e691536435999f4452.tar.gz
rneovim-a93b55273f76e5fe23f614e691536435999f4452.tar.bz2
rneovim-a93b55273f76e5fe23f614e691536435999f4452.zip
Merge pull request #17986 from zeertzjq/fix-ex-mode-regression
Fix regression with :normal and Ex mode from #14311
Diffstat (limited to 'src/nvim/ex_cmds.c')
-rw-r--r--src/nvim/ex_cmds.c17
1 files changed, 10 insertions, 7 deletions
diff --git a/src/nvim/ex_cmds.c b/src/nvim/ex_cmds.c
index b493ad61ae..71b3517adc 100644
--- a/src/nvim/ex_cmds.c
+++ b/src/nvim/ex_cmds.c
@@ -3860,19 +3860,22 @@ static buf_T *do_sub(exarg_T *eap, proftime_T timeout, bool do_buf_event, handle
prompt = xmallocz(ec + 1);
memset(prompt, ' ', sc);
memset(prompt + sc, '^', ec - sc + 1);
- resp = (char_u *)getcmdline_prompt(NUL, prompt, 0, EXPAND_NOTHING,
+ resp = (char_u *)getcmdline_prompt(-1, prompt, 0, EXPAND_NOTHING,
NULL, CALLBACK_NONE);
msg_putchar('\n');
xfree(prompt);
if (resp != NULL) {
typed = *resp;
xfree(resp);
- // When ":normal" runs out of characters we get
- // an empty line. Use "q" to get out of the
- // loop.
- if (ex_normal_busy && typed == NUL) {
- typed = 'q';
- }
+ } else {
+ // getcmdline_prompt() returns NULL if there is no command line to return.
+ typed = NUL;
+ }
+ // When ":normal" runs out of characters we get
+ // an empty line. Use "q" to get out of the
+ // loop.
+ if (ex_normal_busy && typed == NUL) {
+ typed = 'q';
}
} else {
char_u *orig_line = NULL;