diff options
author | Drew Vogel <dvogel@github> | 2021-10-24 20:35:07 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-10-24 20:35:07 +0100 |
commit | e30d10253fa634c4f60daa798d029245f4eed393 (patch) | |
tree | 57aca74b65dc4c3924ef23185b8cb2b6933996c2 /src/globals.h | |
parent | 3c5904d2a5d7861c227a4c3cd4ddcbc51014c838 (diff) | |
download | vim-git-e30d10253fa634c4f60daa798d029245f4eed393.tar.gz |
patch 8.2.3562: cannot add color namesv8.2.3562
Problem: Cannot add color names.
Solution: Add the v:colornames dictionary. (Drew Vogel, closes #8761)
Diffstat (limited to 'src/globals.h')
-rw-r--r-- | src/globals.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/globals.h b/src/globals.h index 948c35f84..5c54130eb 100644 --- a/src/globals.h +++ b/src/globals.h @@ -1774,9 +1774,6 @@ EXTERN char e_nowhitespace[] INIT(= N_("E274: No white space allowed before pare EXTERN char e_lock_unlock[] INIT(= N_("E940: Cannot lock or unlock variable %s")); #endif -#if defined(FEAT_GUI) || defined(FEAT_TERMGUICOLORS) -EXTERN char e_alloc_color[] INIT(= N_("E254: Cannot allocate color %s")); -#endif EXTERN char e_chan_or_job_req[] INIT(= N_("E706: Channel or Job required")); EXTERN char e_jobreq[] INIT(= N_("E693: Job required")); |