diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-01-01 15:58:22 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-01-01 15:58:22 +0000 |
commit | 74409f62790a93daf0965c71da01ff76aa0fa5a5 (patch) | |
tree | ece55c806dc6fe451d24af66008ae1444d81d73d /src/globals.h | |
parent | 56200eed62e59ad831f6564dcafe346e6f97ac20 (diff) | |
download | vim-git-74409f62790a93daf0965c71da01ff76aa0fa5a5.tar.gz |
patch 8.2.3970: error messages are spread outv8.2.3970
Problem: Error messages are spread out.
Solution: Move more errors to errors.h.
Diffstat (limited to 'src/globals.h')
-rw-r--r-- | src/globals.h | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/src/globals.h b/src/globals.h index ad88583ad..1e8fd25f6 100644 --- a/src/globals.h +++ b/src/globals.h @@ -1603,50 +1603,6 @@ EXTERN int netbeansSuppressNoLines INIT(= 0); // skip "No lines in buffer" * Some error messages that can be shared are included here. * They should be moved to errors.h. */ -EXTERN char e_secure[] INIT(= N_("E523: Not allowed here")); -EXTERN char e_textlock[] INIT(= N_("E578: Not allowed to change text here")); -EXTERN char e_textwinlock[] INIT(= N_("E565: Not allowed to change text or change window")); -#if defined(AMIGA) || defined(MACOS_X) || defined(MSWIN) \ - || defined(UNIX) || defined(VMS) -EXTERN char e_screenmode[] INIT(= N_("E359: Screen mode setting not supported")); -#endif -#if defined(FEAT_SIGN_ICONS) && !defined(FEAT_GUI_GTK) -EXTERN char e_signdata[] INIT(= N_("E255: Couldn't read in sign data!")); -#endif -EXTERN char e_trailing[] INIT(= N_("E488: Trailing characters")); -EXTERN char e_trailing_arg[] INIT(= N_("E488: Trailing characters: %s")); -EXTERN char e_winheight[] INIT(= N_("E591: 'winheight' cannot be smaller than 'winminheight'")); -EXTERN char e_winwidth[] INIT(= N_("E592: 'winwidth' cannot be smaller than 'winminwidth'")); -EXTERN char e_zerocount[] INIT(= N_("E939: Positive count required")); -#ifdef FEAT_EVAL -EXTERN char e_missing_dict_colon[] INIT(= N_("E720: Missing colon in Dictionary: %s")); -EXTERN char e_duplicate_key[] INIT(= N_("E721: Duplicate key in Dictionary: \"%s\"")); -EXTERN char e_missing_dict_comma[] INIT(= N_("E722: Missing comma in Dictionary: %s")); -EXTERN char e_missing_dict_end[] INIT(= N_("E723: Missing end of Dictionary '}': %s")); -#endif -#ifdef FEAT_CLIENTSERVER -EXTERN char e_invexprmsg[] INIT(= N_("E449: Invalid expression received")); -#endif -#ifdef FEAT_NETBEANS_INTG -EXTERN char e_guarded[] INIT(= N_("E463: Region is guarded, cannot modify")); -EXTERN char e_nbreadonly[] INIT(= N_("E744: NetBeans does not allow changes in read-only files")); -#endif -EXTERN char e_maxmempat[] INIT(= N_("E363: pattern uses more memory than 'maxmempattern'")); -EXTERN char e_emptybuf[] INIT(= N_("E749: empty buffer")); - -EXTERN char e_invalpat[] INIT(= N_("E682: Invalid search pattern or delimiter")); -#if defined(FEAT_SYN_HL) || defined(FEAT_COMPL_FUNC) -EXTERN char e_notset[] INIT(= N_("E764: Option '%s' is not set")); -#endif -#ifndef FEAT_CLIPBOARD -EXTERN char e_invalidreg[] INIT(= N_("E850: Invalid register name")); -#endif -#ifdef FEAT_FLOAT -EXTERN char e_float_as_string[] INIT(= N_("E806: using Float as a String")); -#endif -EXTERN char e_dirnotf[] INIT(= N_("E919: Directory not found in '%s': \"%s\"")); -EXTERN char e_au_recursive[] INIT(= N_("E952: Autocommand caused recursive behavior")); -EXTERN char e_autocmd_close[] INIT(= N_("E813: Cannot close autocmd or popup window")); #ifdef FEAT_MENU EXTERN char e_menuothermode[] INIT(= N_("E328: Menu only exists in another mode")); #endif |