comparison src/globals.h @ 20524:bed30e6b5a09 v8.2.0816

patch 8.2.0816: terminal test fails when compiled with Athena Commit: https://github.com/vim/vim/commit/87202264f8e27f084c0e58f98aeb27fa5c6d5251 Author: Bram Moolenaar <Bram@vim.org> Date: Sun May 24 17:23:45 2020 +0200 patch 8.2.0816: terminal test fails when compiled with Athena Problem: Terminal test fails when compiled with Athena. Solution: Do give an error when the GUI is not running. (hint by Dominique Pelle, closes #5928, closes #6132)
author Bram Moolenaar <Bram@vim.org>
date Sun, 24 May 2020 17:30:03 +0200
parents d4b2a8675b78
children 9f921ba86d05
comparison
equal deleted inserted replaced
20523:775e169d4cfc 20524:bed30e6b5a09
1765 EXTERN char e_white_after[] INIT(= N_("E1069: white space required after '%s'")); 1765 EXTERN char e_white_after[] INIT(= N_("E1069: white space required after '%s'"));
1766 EXTERN char e_no_white_before[] INIT(= N_("E1068: No white space allowed before '%s'")); 1766 EXTERN char e_no_white_before[] INIT(= N_("E1068: No white space allowed before '%s'"));
1767 1767
1768 EXTERN char e_lock_unlock[] INIT(= N_("E940: Cannot lock or unlock variable %s")); 1768 EXTERN char e_lock_unlock[] INIT(= N_("E940: Cannot lock or unlock variable %s"));
1769 #endif 1769 #endif
1770 #if defined(FEAT_GUI) || defined(FEAT_TERMGUICOLORS)
1771 EXTERN char e_alloc_color[] INIT(= N_("E254: Cannot allocate color %s"));
1772 #endif
1770 1773
1771 #ifdef FEAT_GUI_MAC 1774 #ifdef FEAT_GUI_MAC
1772 EXTERN short disallow_gui INIT(= FALSE); 1775 EXTERN short disallow_gui INIT(= FALSE);
1773 #endif 1776 #endif
1774 1777