X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/0b5538bd8587cfa6a9c90ff7d0c4699654dbabc6..0cf79a3ba2bd3047e875a51edc6358955c0c3a49:/src/puresize.h diff --git a/src/puresize.h b/src/puresize.h index 767c88bb80..5dd374af20 100644 --- a/src/puresize.h +++ b/src/puresize.h @@ -1,5 +1,6 @@ /* How much read-only Lisp storage a dumped Emacs needs. - Copyright (C) 1993, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. + Copyright (C) 1993, 2002, 2003, 2004, 2005, + 2006 Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -42,13 +43,13 @@ Boston, MA 02110-1301, USA. */ #endif #ifndef BASE_PURESIZE -#define BASE_PURESIZE (1100000 + SYSTEM_PURESIZE_EXTRA + SITELOAD_PURESIZE_EXTRA) +#define BASE_PURESIZE (1120000 + SYSTEM_PURESIZE_EXTRA + SITELOAD_PURESIZE_EXTRA) #endif /* Increase BASE_PURESIZE by a ratio depending on the machine's word size. */ #ifndef PURESIZE_RATIO #if BITS_PER_EMACS_INT > 32 -#define PURESIZE_RATIO 9/5 /* Don't surround with `()'. */ +#define PURESIZE_RATIO 10/6 /* Don't surround with `()'. */ #else #define PURESIZE_RATIO 1 #endif @@ -64,7 +65,7 @@ Boston, MA 02110-1301, USA. */ { if (PURE_P (obj)) \ pure_write_error (); } -extern void pure_write_error P_ ((void)); +extern void pure_write_error P_ ((void)) NO_RETURN; /* Define PURE_P. */