]> git.eshelyaron.com Git - emacs.git/commitdiff
(pure): Round PURESIZE up.
authorAndreas Schwab <schwab@suse.de>
Sun, 19 Aug 2007 00:17:53 +0000 (00:17 +0000)
committerAndreas Schwab <schwab@suse.de>
Sun, 19 Aug 2007 00:17:53 +0000 (00:17 +0000)
src/ChangeLog
src/alloc.c

index 89267c92f0a01ecfef49b1555da0a6e8d137842d..add0663a648ba13098a8089fcb9629c1fbb2808c 100644 (file)
@@ -1,3 +1,7 @@
+2007-08-19  Andreas Schwab  <schwab@suse.de>
+
+       * alloc.c (pure): Round PURESIZE up.
+
 2007-08-17  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
 
        * xterm.c (handle_one_xevent): Remove check that mouse click is in
index 948b87851a7e2e5a00e10b16046ad390321b515d..bcec8ea45606d56797ccec3e63275e0c502a1a70 100644 (file)
@@ -266,7 +266,7 @@ Lisp_Object Vmemory_full;
    remapping on more recent systems because this is less important
    nowadays than in the days of small memories and timesharing.  */
 
-EMACS_INT pure[PURESIZE / sizeof (EMACS_INT)] = {1,};
+EMACS_INT pure[(PURESIZE + sizeof (EMACS_INT) - 1) / sizeof (EMACS_INT)] = {1,};
 #define PUREBEG (char *) pure
 
 #else /* HAVE_SHM */