mirror of
https://github.com/vim/vim.git
synced 2025-09-25 03:54:15 -04:00
patch 8.2.2446: setting 'term' empty has different error if compiled with GUI
Problem: Setting 'term' empty has different error if compiled with GUI. Solution: Insert "else". (closes #7766)
This commit is contained in:
@@ -687,7 +687,7 @@ did_set_string_option(
|
||||
if (T_NAME[0] == NUL)
|
||||
errmsg = N_("E529: Cannot set 'term' to empty string");
|
||||
#ifdef FEAT_GUI
|
||||
if (gui.in_use)
|
||||
else if (gui.in_use)
|
||||
errmsg = N_("E530: Cannot change term in GUI");
|
||||
else if (term_is_gui(T_NAME))
|
||||
errmsg = N_("E531: Use \":gui\" to start the GUI");
|
||||
|
Reference in New Issue
Block a user