comparison src/globals.h @ 170:8c60f65311fa v7.0052

updated for version 7.0052
author vimboss
date Sat, 26 Feb 2005 23:04:13 +0000
parents c93c9cad9618
children 84c21eb4fc40
comparison
equal deleted inserted replaced
169:0e902b8f511f 170:8c60f65311fa
202 #ifdef FEAT_EVAL 202 #ifdef FEAT_EVAL
203 EXTERN int ex_nesting_level INIT(= 0); /* nesting level */ 203 EXTERN int ex_nesting_level INIT(= 0); /* nesting level */
204 EXTERN int debug_break_level INIT(= -1); /* break below this level */ 204 EXTERN int debug_break_level INIT(= -1); /* break below this level */
205 EXTERN int debug_did_msg INIT(= FALSE); /* did "debug mode" message */ 205 EXTERN int debug_did_msg INIT(= FALSE); /* did "debug mode" message */
206 EXTERN int debug_tick INIT(= 0); /* breakpoint change count */ 206 EXTERN int debug_tick INIT(= 0); /* breakpoint change count */
207 # ifdef FEAT_PROFILE
208 EXTERN int do_profiling INIT(= 0); /* ":profile start" used */
209 # endif
207 210
208 /* 211 /*
209 * The exception currently being thrown. Used to pass an exception to 212 * The exception currently being thrown. Used to pass an exception to
210 * a different cstack. Also used for discarding an exception before it is 213 * a different cstack. Also used for discarding an exception before it is
211 * caught or made pending. Only valid when did_throw is TRUE. 214 * caught or made pending. Only valid when did_throw is TRUE.
1404 #endif 1407 #endif
1405 #ifdef FEAT_NETBEANS_INTG 1408 #ifdef FEAT_NETBEANS_INTG
1406 EXTERN char_u e_guarded[] INIT(=N_("E463: Region is guarded, cannot modify")); 1409 EXTERN char_u e_guarded[] INIT(=N_("E463: Region is guarded, cannot modify"));
1407 EXTERN char_u e_nbreadonly[] INIT(=N_("E744: NetBeans does not allow changes in read-only files")); 1410 EXTERN char_u e_nbreadonly[] INIT(=N_("E744: NetBeans does not allow changes in read-only files"));
1408 #endif 1411 #endif
1412 #if defined(FEAT_EVAL) || defined(FEAT_SYN_HL) || defined(PROTO)
1409 EXTERN char_u e_intern2[] INIT(=N_("E685: Internal error: %s")); 1413 EXTERN char_u e_intern2[] INIT(=N_("E685: Internal error: %s"));
1414 #endif
1410 #if defined(HAVE_SETJMP_H) || defined(HAVE_TRY_EXCEPT) 1415 #if defined(HAVE_SETJMP_H) || defined(HAVE_TRY_EXCEPT)
1411 EXTERN char_u e_complex[] INIT(=N_("E361: Crash intercepted; regexp too complex?")); 1416 EXTERN char_u e_complex[] INIT(=N_("E361: Crash intercepted; regexp too complex?"));
1412 #endif 1417 #endif
1413 EXTERN char_u e_outofstack[] INIT(=N_("E363: pattern caused out-of-stack error")); 1418 EXTERN char_u e_outofstack[] INIT(=N_("E363: pattern caused out-of-stack error"));
1414 EXTERN char_u e_emptybuf[] INIT(=N_("E749: empty buffer")); 1419 EXTERN char_u e_emptybuf[] INIT(=N_("E749: empty buffer"));