diff options
author | Bram Moolenaar <Bram@vim.org> | 2021-05-30 13:54:03 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-05-30 13:54:03 +0200 |
commit | e5b4486c4279a9674a9bb76130b4db53fb9303a0 (patch) | |
tree | 9cd31ae2e02e189ab80ee11db6bc28dfed657b27 /src/errors.h | |
parent | 28cf44f761a7bf261bcd0760a1c5f61070f69595 (diff) | |
download | vim-git-e5b4486c4279a9674a9bb76130b4db53fb9303a0.tar.gz |
patch 8.2.2908: crash when using a terminal popup window from cmdline windowv8.2.2908
Problem: Crash when using a terminal popup window from the cmdline window.
Solution: Instead of checking cmdwin_type call cmdwin_is_active().
(closes #8286)
Diffstat (limited to 'src/errors.h')
-rw-r--r-- | src/errors.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/errors.h b/src/errors.h index d6e5dd1d2..00d395bae 100644 --- a/src/errors.h +++ b/src/errors.h @@ -415,3 +415,5 @@ EXTERN char e_expression_does_not_result_in_value_str[] INIT(= N_("E1186: Expression does not result in a value: %s")); EXTERN char e_failed_to_source_defaults[] INIT(= N_("E1187: Failed to source defaults.vim")); +EXTERN char e_cannot_open_terminal_from_command_line_window[] + INIT(= N_("E1188: Cannot open a terminal from the command line window")); |