comparison src/globals.h @ 73:cbd631b28f36

updated for version 7.0031
author vimboss
date Wed, 05 Jan 2005 22:08:40 +0000
parents 9e4064826a20
children 98435a8ddb09
comparison
equal deleted inserted replaced
72:2b454a43b2c6 73:cbd631b28f36
234 */ 234 */
235 EXTERN int trylevel INIT(= 0); 235 EXTERN int trylevel INIT(= 0);
236 236
237 /* 237 /*
238 * When "force_abort" is TRUE, always skip commands after an error message, 238 * When "force_abort" is TRUE, always skip commands after an error message,
239 * even after the outermost ":endif" or ":endwhile" or for a function whithout 239 * even after the outermost ":endif", ":endwhile" or ":endfor" or for a
240 * the "abort" flag. It is set to TRUE when "trylevel" is non-zero (and 240 * function whithout the "abort" flag. It is set to TRUE when "trylevel" is
241 * ":silent!" was not used) or an exception is being thrown at the time an 241 * non-zero (and ":silent!" was not used) or an exception is being thrown at
242 * error is detected. It is set to FALSE when "trylevel" gets zero again and 242 * the time an error is detected. It is set to FALSE when "trylevel" gets
243 * there was no error or interrupt or throw. 243 * zero again and there was no error or interrupt or throw.
244 *
245 */ 244 */
246 EXTERN int force_abort INIT(= FALSE); 245 EXTERN int force_abort INIT(= FALSE);
247 246
248 /* 247 /*
249 * "msg_list" points to a variable in the stack of do_cmdline() which keeps the 248 * "msg_list" points to a variable in the stack of do_cmdline() which keeps the
1235 EXTERN char_u e_curdir[] INIT(=N_("E12: Command not allowed from exrc/vimrc in current dir or tag search")); 1234 EXTERN char_u e_curdir[] INIT(=N_("E12: Command not allowed from exrc/vimrc in current dir or tag search"));
1236 #ifdef FEAT_EVAL 1235 #ifdef FEAT_EVAL
1237 EXTERN char_u e_endif[] INIT(=N_("E171: Missing :endif")); 1236 EXTERN char_u e_endif[] INIT(=N_("E171: Missing :endif"));
1238 EXTERN char_u e_endtry[] INIT(=N_("E600: Missing :endtry")); 1237 EXTERN char_u e_endtry[] INIT(=N_("E600: Missing :endtry"));
1239 EXTERN char_u e_endwhile[] INIT(=N_("E170: Missing :endwhile")); 1238 EXTERN char_u e_endwhile[] INIT(=N_("E170: Missing :endwhile"));
1239 EXTERN char_u e_endfor[] INIT(=N_("E170: Missing :endfor"));
1240 EXTERN char_u e_while[] INIT(=N_("E588: :endwhile without :while")); 1240 EXTERN char_u e_while[] INIT(=N_("E588: :endwhile without :while"));
1241 EXTERN char_u e_for[] INIT(=N_("E588: :endfor without :for"));
1242 EXTERN char_u e_listreq[] INIT(=N_("E999: List required"));
1241 #endif 1243 #endif
1242 EXTERN char_u e_exists[] INIT(=N_("E13: File exists (add ! to override)")); 1244 EXTERN char_u e_exists[] INIT(=N_("E13: File exists (add ! to override)"));
1243 EXTERN char_u e_failed[] INIT(=N_("E472: Command failed")); 1245 EXTERN char_u e_failed[] INIT(=N_("E472: Command failed"));
1244 #if defined(FEAT_GUI) && defined(FEAT_XFONTSET) 1246 #if defined(FEAT_GUI) && defined(FEAT_XFONTSET)
1245 EXTERN char_u e_fontset[] INIT(=N_("E234: Unknown fontset: %s")); 1247 EXTERN char_u e_fontset[] INIT(=N_("E234: Unknown fontset: %s"));