comparison src/globals.h @ 15375:6012cc6936f7 v8.1.0695

patch 8.1.0695: internal error when using :popup commit https://github.com/vim/vim/commit/f42b45d719e03218735b3c2845a74dca9c0efd60 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jan 6 13:11:05 2019 +0100 patch 8.1.0695: internal error when using :popup Problem: Internal error when using :popup. Solution: When a menu only exists in Terminal mode give an error. (Naruhiko Nishino, closes #3765)
author Bram Moolenaar <Bram@vim.org>
date Sun, 06 Jan 2019 13:15:09 +0100
parents 6abee072b93c
children 1d2b5c016f17
comparison
equal deleted inserted replaced
15374:13a34f8e996b 15375:6012cc6936f7
1581 #ifndef FEAT_CLIPBOARD 1581 #ifndef FEAT_CLIPBOARD
1582 EXTERN char_u e_invalidreg[] INIT(= N_("E850: Invalid register name")); 1582 EXTERN char_u e_invalidreg[] INIT(= N_("E850: Invalid register name"));
1583 #endif 1583 #endif
1584 EXTERN char_u e_dirnotf[] INIT(= N_("E919: Directory not found in '%s': \"%s\"")); 1584 EXTERN char_u e_dirnotf[] INIT(= N_("E919: Directory not found in '%s': \"%s\""));
1585 EXTERN char_u e_au_recursive[] INIT(= N_("E952: Autocommand caused recursive behavior")); 1585 EXTERN char_u e_au_recursive[] INIT(= N_("E952: Autocommand caused recursive behavior"));
1586 #ifdef FEAT_MENU
1587 EXTERN char_u e_menuothermode[] INIT(= N_("E328: Menu only exists in another mode"));
1588 #endif
1586 1589
1587 #ifdef FEAT_GUI_MAC 1590 #ifdef FEAT_GUI_MAC
1588 EXTERN short disallow_gui INIT(= FALSE); 1591 EXTERN short disallow_gui INIT(= FALSE);
1589 #endif 1592 #endif
1590 1593