]> git.eshelyaron.com Git - emacs.git/commitdiff
; Correct typos in commentary and error messages
authorPo Lu <luangruo@yahoo.com>
Mon, 10 Mar 2025 01:43:13 +0000 (09:43 +0800)
committerEshel Yaron <me@eshelyaron.com>
Wed, 12 Mar 2025 18:52:47 +0000 (19:52 +0100)
* src/lisp.h (USE_LSB_TAG):

* src/pdumper.c (pdumper_load): Correct typos in commentary and
error messages.

(cherry picked from commit 5176eeb3003a4d31053b07a9c6045da723fa257d)

src/lisp.h
src/pdumper.c

index 4506f8613a8a81bd2448837228d670ff467e3ab5..350533547a70c1b5a2ae14a0577b2e9deeb8fe74 100644 (file)
@@ -257,9 +257,9 @@ DEFINE_GDB_SYMBOL_BEGIN (bool, USE_LSB_TAG)
      && !defined __alignas_is_defined                          \
      && __STDC_VERSION__ < 202311 && __cplusplus < 201103)
 #define USE_LSB_TAG 0
-#else /* EMACS_INT_WIDTH >= GCALIGNMENT || defined alignas ... */
+#else /* ALIGNOF_EMACS_INT >= IDEAL_GCALIGNMENT || defined alignas ... */
 #define USE_LSB_TAG (VAL_MAX / 2 < INTPTR_MAX)
-#endif /* EMACS_INT_WIDTH >= GCALIGNMENT || defined alignas ... */
+#endif /* ALIGNOF_EMACS_INT >= IDEAL_GCALIGNMENT || defined alignas ... */
 DEFINE_GDB_SYMBOL_END (USE_LSB_TAG)
 
 /* Mask for the value (as opposed to the type bits) of a Lisp object.  */
index 8e10e561bcf77fb1bfefe6637e5ab34f40d55de5..166ba32eab71c7bbe1627e69a53d237e0b11e631 100644 (file)
@@ -5810,7 +5810,7 @@ pdumper_load (const char *dump_filename, char *argv0)
   if ((dump_base + dump_size) & ~VALMASK)
     {
       fprintf (stderr,
-              "Failed to load dump file: 0x%p+0x%p & 0x%p != 0\n",
+              "Failed to load dump file: 0x%p+0x%p & ~0x%p != 0\n",
               (void *) dump_base, (void *) dump_size,
               (void *) (uintptr_t) VALMASK);
       goto out;