comparison src/eval.c @ 40073:399441e11340

Clarify previous change.
author Richard M. Stallman <rms@gnu.org>
date Fri, 19 Oct 2001 23:37:53 +0000
parents 22a7c39a8c32
children 3bb2c22854a2
comparison
equal deleted inserted replaced
40072:22a7c39a8c32 40073:399441e11340
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\ 3311 When you evaluate an expression interactively, this variable\n\
3312 is normally bound to the value of `eval-expression-debug-on-error'.\n\ 3312 is temporarily non-nil if `eval-expression-debug-on-error' is non-nil.\n\
3313 See also variable `debug-on-quit'."); 3313 See also variable `debug-on-quit'.");
3314 Vdebug_on_error = Qnil; 3314 Vdebug_on_error = Qnil;
3315 3315
3316 DEFVAR_LISP ("debug-ignored-errors", &Vdebug_ignored_errors, 3316 DEFVAR_LISP ("debug-ignored-errors", &Vdebug_ignored_errors,
3317 "*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\
3324 3324
3325 DEFVAR_BOOL ("debug-on-quit", &debug_on_quit, 3325 DEFVAR_BOOL ("debug-on-quit", &debug_on_quit,
3326 "*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\
3327 Does not apply if quit is handled by a `condition-case'.\n\ 3327 Does not apply if quit is handled by a `condition-case'.\n\
3328 When you evaluate an expression interactively, this variable\n\ 3328 When you evaluate an expression interactively, this variable\n\
3329 is normally bound to the value of `eval-expression-debug-on-quit'."); 3329 is temporarily non-nil if `eval-expression-debug-on-quit' is non-nil.");
3330 debug_on_quit = 0; 3330 debug_on_quit = 0;
3331 3331
3332 DEFVAR_BOOL ("debug-on-next-call", &debug_on_next_call, 3332 DEFVAR_BOOL ("debug-on-next-call", &debug_on_next_call,
3333 "Non-nil means enter debugger before next `eval', `apply' or `funcall'."); 3333 "Non-nil means enter debugger before next `eval', `apply' or `funcall'.");
3334 3334