aboutsummaryrefslogtreecommitdiffstats
path: root/src/lisp.h
diff options
context:
space:
mode:
authorPo Lu2025-03-10 09:43:13 +0800
committerPo Lu2025-03-10 09:43:13 +0800
commit5176eeb3003a4d31053b07a9c6045da723fa257d (patch)
treeb7e341f7e61638f119bdc8a8b926efc14cd68fd9 /src/lisp.h
parent0861da138b91b936a1b307fd59622d98f9b22cc6 (diff)
downloademacs-5176eeb3003a4d31053b07a9c6045da723fa257d.tar.gz
emacs-5176eeb3003a4d31053b07a9c6045da723fa257d.zip
; Correct typos in commentary and error messages
* src/lisp.h (USE_LSB_TAG): * src/pdumper.c (pdumper_load): Correct typos in commentary and error messages.
Diffstat (limited to 'src/lisp.h')
-rw-r--r--src/lisp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lisp.h b/src/lisp.h
index 22c822ad12f..243e8cc7f36 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -257,9 +257,9 @@ DEFINE_GDB_SYMBOL_BEGIN (bool, USE_LSB_TAG)
257 && !defined __alignas_is_defined \ 257 && !defined __alignas_is_defined \
258 && __STDC_VERSION__ < 202311 && __cplusplus < 201103) 258 && __STDC_VERSION__ < 202311 && __cplusplus < 201103)
259#define USE_LSB_TAG 0 259#define USE_LSB_TAG 0
260#else /* EMACS_INT_WIDTH >= GCALIGNMENT || defined alignas ... */ 260#else /* ALIGNOF_EMACS_INT >= IDEAL_GCALIGNMENT || defined alignas ... */
261#define USE_LSB_TAG (VAL_MAX / 2 < INTPTR_MAX) 261#define USE_LSB_TAG (VAL_MAX / 2 < INTPTR_MAX)
262#endif /* EMACS_INT_WIDTH >= GCALIGNMENT || defined alignas ... */ 262#endif /* ALIGNOF_EMACS_INT >= IDEAL_GCALIGNMENT || defined alignas ... */
263DEFINE_GDB_SYMBOL_END (USE_LSB_TAG) 263DEFINE_GDB_SYMBOL_END (USE_LSB_TAG)
264 264
265/* Mask for the value (as opposed to the type bits) of a Lisp object. */ 265/* Mask for the value (as opposed to the type bits) of a Lisp object. */