aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2005-10-28 16:44:46 +0000
committerRichard M. Stallman2005-10-28 16:44:46 +0000
commit107fb6c99543bb33b2ece343c9703c8b36095006 (patch)
tree6be4b9c2319590bb7bd5cfdca3640d052061f504
parent30cb17f0c205a6e8ee60b9d847f6c1a52bc74ee4 (diff)
downloademacs-107fb6c99543bb33b2ece343c9703c8b36095006.tar.gz
emacs-107fb6c99543bb33b2ece343c9703c8b36095006.zip
*** empty log message ***
-rw-r--r--etc/NEWS8
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lispref/ChangeLog9
-rw-r--r--man/ChangeLog6
-rw-r--r--src/ChangeLog14
5 files changed, 38 insertions, 1 deletions
diff --git a/etc/NEWS b/etc/NEWS
index f342dc9e328..90c3f8e109c 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -280,6 +280,14 @@ special treatment in `dired-do-shell-command'.
280* Editing Changes in Emacs 22.1 280* Editing Changes in Emacs 22.1
281 281
282+++ 282+++
283** !MEM FULL! at the start of the mode line indicates that Emacs
284cannot get any more memory for Lisp data. This often means it could
285crash soon if you do things that use more memory. On most systems,
286killing buffers will get out of this state. If killing buffers does
287not make !MEM FULL! disappear, you should save your work and start
288a new Emacs.
289
290+++
283** The max size of buffers and integers has been doubled. 291** The max size of buffers and integers has been doubled.
284On 32bit machines, it is now 256M (i.e. 268435455). 292On 32bit machines, it is now 256M (i.e. 268435455).
285 293
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 238c679d257..1e6976349d1 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -8,7 +8,7 @@
8 8
9 * files.el (find-file-noselect): Use %d to format large file size. 9 * files.el (find-file-noselect): Use %d to format large file size.
10 10
11 * bindings.el (help-echo): Add %e. 11 * bindings.el (mode-line-format): Add %e.
12 12
13 * loadup.el ("facemenu"): Load unconditionally. 13 * loadup.el ("facemenu"): Load unconditionally.
14 ("image", "international/fontset", "dnd", "mwheel", "tool-bar"): 14 ("image", "international/fontset", "dnd", "mwheel", "tool-bar"):
diff --git a/lispref/ChangeLog b/lispref/ChangeLog
index 8c8a75734ae..16ffc6ec34d 100644
--- a/lispref/ChangeLog
+++ b/lispref/ChangeLog
@@ -1,3 +1,12 @@
12005-10-28 Richard M. Stallman <rms@gnu.org>
2
3 * minibuf.texi (Completion Commands): Clean up prev change.
4
52005-10-26 Kevin Ryde <user42@zip.com.au>
6
7 * compile.texi (Eval During Compile): Explain recommended uses
8 of eval-when-compile and eval-and-compile.
9
12005-10-27 Masatake YAMATO <jet@gyve.org> 102005-10-27 Masatake YAMATO <jet@gyve.org>
2 11
3 * minibuf.texi (Completion Commands): 12 * minibuf.texi (Completion Commands):
diff --git a/man/ChangeLog b/man/ChangeLog
index f494c9fd653..d9f0312d319 100644
--- a/man/ChangeLog
+++ b/man/ChangeLog
@@ -1,3 +1,9 @@
12005-10-28 Richard M. Stallman <rms@gnu.org>
2
3 * files.texi (Visiting): Explain how to enter ? in a file name.
4
5 * trouble.texi (Memory Full): Mention !MEM FULL! in mode line.
6
12005-10-27 Jay Belanger <belanger@truman.edu> 72005-10-27 Jay Belanger <belanger@truman.edu>
2 8
3 * calc.texi (Predefined Units): Fix the symbol for a TeX points, 9 * calc.texi (Predefined Units): Fix the symbol for a TeX points,
diff --git a/src/ChangeLog b/src/ChangeLog
index 61a10be80dd..88c6d138a63 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,17 @@
12005-10-28 Richard M. Stallman <rms@gnu.org>
2
3 * xfns.c (syms_of_xfns): Provide `x' as feature.
4
5 * xdisp.c (decode_mode_spec): Define %e to indicate memory full.
6
7 * editfns.c (Fformat): Don't include string padding
8 between info[n].start and info[n].end.
9
10 * alloc.c (spare_memory): No longer static.
11 (xfree) [!SYSTEM_MALLOC]: Call refill_memory_reserve.
12
13 * puresize.h (BASE_PURESIZE): Incremented to 112000.
14
12005-10-27 Chong Yidong <cyd@stupidchicken.com> 152005-10-27 Chong Yidong <cyd@stupidchicken.com>
2 16
3 * data.c (Fmake_variable_frame_local): Add clarification to 17 * data.c (Fmake_variable_frame_local): Add clarification to