aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2020-05-27 09:45:49 -0700
committerPaul Eggert2020-05-27 09:51:12 -0700
commit9d11f127f15cc4dafcdb825dcfc6e495d729a069 (patch)
tree86ef1c845ace94bb75e689771906e54d274114c3 /src
parent22446569cd319403e6e5e19369439ec71c46150d (diff)
downloademacs-9d11f127f15cc4dafcdb825dcfc6e495d729a069.tar.gz
emacs-9d11f127f15cc4dafcdb825dcfc6e495d729a069.zip
--with-wide-int is a no-op on 64-bit hosts
* configure.ac: Clarify wording for --with-wide-int help. * src/pdumper.c (dump_vectorlike_generic): Do the eassert even if --with-wide-int was specified unnecessarily.
Diffstat (limited to 'src')
-rw-r--r--src/pdumper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pdumper.c b/src/pdumper.c
index 63424c5734a..bac6900cd1a 100644
--- a/src/pdumper.c
+++ b/src/pdumper.c
@@ -2603,7 +2603,7 @@ dump_vectorlike_generic (struct dump_context *ctx,
2603 Lisp_Object out; 2603 Lisp_Object out;
2604 const Lisp_Object *vslot = &v->contents[i]; 2604 const Lisp_Object *vslot = &v->contents[i];
2605 /* In the wide case, we're always misaligned. */ 2605 /* In the wide case, we're always misaligned. */
2606#ifndef WIDE_EMACS_INT 2606#if INTPTR_MAX == EMACS_INT_MAX
2607 eassert (ctx->offset % sizeof (out) == 0); 2607 eassert (ctx->offset % sizeof (out) == 0);
2608#endif 2608#endif
2609 dump_object_start (ctx, &out, sizeof (out)); 2609 dump_object_start (ctx, &out, sizeof (out));