aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDan Nicolaescu2009-10-30 02:00:11 +0000
committerDan Nicolaescu2009-10-30 02:00:11 +0000
commitca0a881a3512c1f9495833e15a801f5af5b89893 (patch)
tree6d91adb6a5117ab394bb0564cca9f95b8e16f9f1 /src
parentd9a57abf8154b57d50371250348628e0102e28a2 (diff)
downloademacs-ca0a881a3512c1f9495833e15a801f5af5b89893.tar.gz
emacs-ca0a881a3512c1f9495833e15a801f5af5b89893.zip
* puresize.h (BASE_PURESIZE): Increase to 1470000.
* lread.c (Fload): Purecopy the file name when building Vpreloaded_file_list. * textmodes/ispell.el (ispell-skip-region-alist): * international/mule-conf.el (eight-bit): * international/fontset.el (font-encoding-alist): * startup.el (pure-space-overflow-message): * simple.el (overwrite-mode-textual, overwrite-mode-binary): * paths.el (gnus-nntp-service, rmail-spool-directory) (term-file-prefix): * files.el (save-some-buffers-action-alist): * cmuscheme.el (same-window-buffer-names): * ielm.el (same-window-buffer-names): * shell.el (same-window-buffer-names): * mail/sendmail.el (same-window-buffer-names): * progmodes/inf-lisp.el (same-window-buffer-names): * bindings.el (mode-line-client) (mode-line-column-line-number-mode-map): * language/tibetan.el (tibetan-precomposition-rule-regexp) (tibetan-precomposed-regexp): Purecopy string arguments.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog6
-rw-r--r--src/lread.c2
-rw-r--r--src/puresize.h2
3 files changed, 8 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index b7dfa322779..44cc92450c4 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,9 @@
12009-10-30 Dan Nicolaescu <dann@ics.uci.edu>
2
3 * puresize.h (BASE_PURESIZE): Increase to 1470000.
4
5 * lread.c (Fload): Purecopy the file name when building Vpreloaded_file_list.
6
12009-10-29 Jason Rumney <jasonr@wanchan.jasonrumney.net> 72009-10-29 Jason Rumney <jasonr@wanchan.jasonrumney.net>
2 8
3 * w32fns.c (syms_of_w32fns): Change default value of 9 * w32fns.c (syms_of_w32fns): Change default value of
diff --git a/src/lread.c b/src/lread.c
index 19b6c05143b..ada447f7c50 100644
--- a/src/lread.c
+++ b/src/lread.c
@@ -1242,7 +1242,7 @@ Return t if the file exists and loads successfully. */)
1242 } 1242 }
1243 1243
1244 if (! NILP (Vpurify_flag)) 1244 if (! NILP (Vpurify_flag))
1245 Vpreloaded_file_list = Fcons (file, Vpreloaded_file_list); 1245 Vpreloaded_file_list = Fcons (Fpurecopy(file), Vpreloaded_file_list);
1246 1246
1247 if (NILP (nomessage) || force_load_messages) 1247 if (NILP (nomessage) || force_load_messages)
1248 { 1248 {
diff --git a/src/puresize.h b/src/puresize.h
index b6665c00649..44367dabb83 100644
--- a/src/puresize.h
+++ b/src/puresize.h
@@ -41,7 +41,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
41#endif 41#endif
42 42
43#ifndef BASE_PURESIZE 43#ifndef BASE_PURESIZE
44#define BASE_PURESIZE (1430000 + SYSTEM_PURESIZE_EXTRA + SITELOAD_PURESIZE_EXTRA) 44#define BASE_PURESIZE (1470000 + SYSTEM_PURESIZE_EXTRA + SITELOAD_PURESIZE_EXTRA)
45#endif 45#endif
46 46
47/* Increase BASE_PURESIZE by a ratio depending on the machine's word size. */ 47/* Increase BASE_PURESIZE by a ratio depending on the machine's word size. */