aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/eval.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/eval.c b/src/eval.c
index d66bcdae6ce..12e811ce264 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -1678,6 +1678,10 @@ DEFUN ("signal", Fsignal, Ssignal, 2, 2, 0,
1678 doc: /* Signal an error. Args are ERROR-SYMBOL and associated DATA. 1678 doc: /* Signal an error. Args are ERROR-SYMBOL and associated DATA.
1679This function does not return. 1679This function does not return.
1680 1680
1681When `noninteractive' is non-nil (in particular, in batch mode), an
1682unhandled error calls `kill-emacs', which terminates the Emacs
1683session with a non-zero exit code.
1684
1681An error symbol is a symbol with an `error-conditions' property 1685An error symbol is a symbol with an `error-conditions' property
1682that is a list of condition names. The symbol should be non-nil. 1686that is a list of condition names. The symbol should be non-nil.
1683A handler for any of those names will get to handle this signal. 1687A handler for any of those names will get to handle this signal.