diff options
| author | Eli Zaretskii | 2023-11-11 05:31:52 -0500 |
|---|---|---|
| committer | Eli Zaretskii | 2023-11-11 05:31:52 -0500 |
| commit | c9d7740574758d47c8864cbada5fd2a2b2ee8911 (patch) | |
| tree | 8afa0f3ec91bb42f17603fbb5e1d15f9d6be9395 /src | |
| parent | 45942508141bbeacd00479599e21592af42253bd (diff) | |
| parent | ce0ebb91f25847ebaa2745f47413df24a60f051c (diff) | |
| download | emacs-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.c | 4 |
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. |
| 1679 | This function does not return. | 1679 | This function does not return. |
| 1680 | 1680 | ||
| 1681 | When `noninteractive' is non-nil (in particular, in batch mode), an | ||
| 1682 | unhandled error calls `kill-emacs', which terminates the Emacs | ||
| 1683 | session with a non-zero exit code. | ||
| 1684 | |||
| 1681 | An error symbol is a symbol with an `error-conditions' property | 1685 | An error symbol is a symbol with an `error-conditions' property |
| 1682 | that is a list of condition names. The symbol should be non-nil. | 1686 | that is a list of condition names. The symbol should be non-nil. |
| 1683 | A handler for any of those names will get to handle this signal. | 1687 | A handler for any of those names will get to handle this signal. |