aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/eval.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/eval.c b/src/eval.c
index 1351d283c58..e2d70aaa0ef 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -4267,8 +4267,10 @@ still determine whether to handle the particular condition. */);
4267 4267
4268 DEFVAR_BOOL ("backtrace-on-error-noninteractive", 4268 DEFVAR_BOOL ("backtrace-on-error-noninteractive",
4269 backtrace_on_error_noninteractive, 4269 backtrace_on_error_noninteractive,
4270 doc: /* If non-nil and Emacs is running noninteractively, 4270 doc: /* Non-nil means print backtrace on error in batch mode.
4271print a backtrace on encountering an unhandled error. */); 4271If this is nil, errors in batch mode will just print the error
4272message upon encountering an unhandled error, without showing
4273the Lisp backtrace. */);
4272 backtrace_on_error_noninteractive = true; 4274 backtrace_on_error_noninteractive = true;
4273 4275
4274 /* The value of num_nonmacro_input_events as of the last time we 4276 /* The value of num_nonmacro_input_events as of the last time we