comparison src/eval.c @ 40072:22a7c39a8c32

(syms_of_eval): Doc fixes.
author Richard M. Stallman <rms@gnu.org>
date Fri, 19 Oct 2001 23:33:55 +0000
parents d93909a71fa4
children 399441e11340
comparison
equal deleted inserted replaced
40071:97f6adcfecdc 40072:22a7c39a8c32
3306 "*Non-nil means enter debugger if an error is signaled.\n\ 3306 "*Non-nil means enter debugger if an error is signaled.\n\
3307 Does not apply to errors handled by `condition-case' or those\n\ 3307 Does not apply to errors handled by `condition-case' or those\n\
3308 matched by `debug-ignored-errors'.\n\ 3308 matched by `debug-ignored-errors'.\n\
3309 If the value is a list, an error only means to enter the debugger\n\ 3309 If the value is a list, an error only means to enter the debugger\n\
3310 if one of its condition symbols appears in the list.\n\ 3310 if one of its condition symbols appears in the list.\n\
3311 When you evaluate an expression interactively, this variable\n\
3312 is normally bound to the value of `eval-expression-debug-on-error'.\n\
3311 See also variable `debug-on-quit'."); 3313 See also variable `debug-on-quit'.");
3312 Vdebug_on_error = Qnil; 3314 Vdebug_on_error = Qnil;
3313 3315
3314 DEFVAR_LISP ("debug-ignored-errors", &Vdebug_ignored_errors, 3316 DEFVAR_LISP ("debug-ignored-errors", &Vdebug_ignored_errors,
3315 "*List of errors for which the debugger should not be called.\n\ 3317 "*List of errors for which the debugger should not be called.\n\
3320 It does not apply to errors handled by `condition-case'."); 3322 It does not apply to errors handled by `condition-case'.");
3321 Vdebug_ignored_errors = Qnil; 3323 Vdebug_ignored_errors = Qnil;
3322 3324
3323 DEFVAR_BOOL ("debug-on-quit", &debug_on_quit, 3325 DEFVAR_BOOL ("debug-on-quit", &debug_on_quit,
3324 "*Non-nil means enter debugger if quit is signaled (C-g, for example).\n\ 3326 "*Non-nil means enter debugger if quit is signaled (C-g, for example).\n\
3325 Does not apply if quit is handled by a `condition-case'."); 3327 Does not apply if quit is handled by a `condition-case'.\n\
3328 When you evaluate an expression interactively, this variable\n\
3329 is normally bound to the value of `eval-expression-debug-on-quit'.");
3326 debug_on_quit = 0; 3330 debug_on_quit = 0;
3327 3331
3328 DEFVAR_BOOL ("debug-on-next-call", &debug_on_next_call, 3332 DEFVAR_BOOL ("debug-on-next-call", &debug_on_next_call,
3329 "Non-nil means enter debugger before next `eval', `apply' or `funcall'."); 3333 "Non-nil means enter debugger before next `eval', `apply' or `funcall'.");
3330 3334