diff options
| author | Stefan Kangas | 2022-12-19 04:42:18 +0100 |
|---|---|---|
| committer | Stefan Kangas | 2022-12-19 04:42:18 +0100 |
| commit | 9a58585668f1697fb8fa6cb10a77b94fb3a578d1 (patch) | |
| tree | b019498657b470b331b8eca9b56d15b4a494a9e0 /src/alloc.c | |
| parent | 03648965a027b1a0aa46a2ebfa0dab78ef49b200 (diff) | |
| parent | b01d0246d71a7a3fd92b2864a3c0c0bc9367ee0b (diff) | |
| download | emacs-9a58585668f1697fb8fa6cb10a77b94fb3a578d1.tar.gz emacs-9a58585668f1697fb8fa6cb10a77b94fb3a578d1.zip | |
Merge from origin/emacs-29
b01d0246d71 * lisp/term/xterm.el (xterm-function-map): Add M-SPC. (B...
303d6ac1423 Fix moving to trash files that overwrite dangling symlink...
dc78779c0cd Fix SVG scaling (bug#59802)
10415d9651b ; Add useful hint to which-func documentation
c26ab22cf4e ; Improve doc strings of minibuffer-history commands
80f410d281c ; Fix last changes in buffer.c
f04680e067b Fix some naming issues involving query buffers in ERC
173e02f4eb4 ; Fix doc string in ERC's module-activation commands
5a9263a8725 Increment erc-debug-irc-protocol-version to 2
89f54e81576 A better fix for bug#60096
1b9ca1e5e64 ; Fix printing Lisp types in .gdbinit
7575c85efd2 Bump Eglot version to 1.10
a0806bc7ea9 Eglot: fix discrepant eglot-guess-contact/eglot-command-h...
8bf4cdcf79b Avoid recursive process filters in lisp/jsonrpc.el (bug#6...
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/alloc.c b/src/alloc.c index e443acd72fa..82e8901cf43 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -5275,7 +5275,8 @@ valid_lisp_object_p (Lisp_Object obj) | |||
| 5275 | if (valid <= 0) | 5275 | if (valid <= 0) |
| 5276 | return valid; | 5276 | return valid; |
| 5277 | 5277 | ||
| 5278 | if (SUBRP (obj)) | 5278 | /* Strings and conses produced by AUTO_STRING etc. all get here. */ |
| 5279 | if (SUBRP (obj) || STRINGP (obj) || CONSP (obj)) | ||
| 5279 | return 1; | 5280 | return 1; |
| 5280 | 5281 | ||
| 5281 | return 0; | 5282 | return 0; |