aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2023-11-11 05:31:52 -0500
committerEli Zaretskii2023-11-11 05:31:52 -0500
commitc9d7740574758d47c8864cbada5fd2a2b2ee8911 (patch)
tree8afa0f3ec91bb42f17603fbb5e1d15f9d6be9395 /src
parent45942508141bbeacd00479599e21592af42253bd (diff)
parentce0ebb91f25847ebaa2745f47413df24a60f051c (diff)
downloademacs-c9d7740574758d47c8864cbada5fd2a2b2ee8911.tar.gz
emacs-c9d7740574758d47c8864cbada5fd2a2b2ee8911.zip
Merge from origin/emacs-29
ce0ebb91f25 Improve documentation of read syntax and printed represen... 81f84b00a5d ; * doc/lispref/modes.texi (Other Font Lock Variables): A... 434592b0746 ; * lisp/dired.el (dired-use-ls-dired): Doc fix (bug#67053). fe000236cf2 Improve documentation of signaling errors in batch mode 103ca678ac1 Fix treesit-simple-indent-presets docstring (bug#67007) b7871cefe7b Prevent an infinite loop in todo-mode (bug#66994) fa8cc4c9ee2 Fix cmake-ts-mode indentation (Bug#66845) 5bdc61bc0ef Update to Org 9.6.11 18e2de1bec9 ; * lisp/bindings.el (right-word, left-word): Doc fix. 4f0fc3bfda3 ; Document core input events problems with XInput2
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.