aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2005-10-29 20:04:09 +0000
committerRichard M. Stallman2005-10-29 20:04:09 +0000
commit685abb980b4cfb13bc2c7a054bb3090910c05e8f (patch)
tree70ece7306b6a91b02d5f23f77859a0cc59ae474f
parent27f8fd9959de9a45eac38c22f62d87077ada9652 (diff)
downloademacs-685abb980b4cfb13bc2c7a054bb3090910c05e8f.tar.gz
emacs-685abb980b4cfb13bc2c7a054bb3090910c05e8f.zip
*** empty log message ***
-rw-r--r--etc/NEWS4
-rw-r--r--lisp/ChangeLog17
-rw-r--r--lispref/ChangeLog4
-rw-r--r--src/ChangeLog1
4 files changed, 26 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 4ae91176018..e41e8183900 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -3358,6 +3358,10 @@ the command `undefined'. (In earlier Emacs versions, it used
3358 3358
3359--- 3359---
3360** Support for Mocklisp has been removed. 3360** Support for Mocklisp has been removed.
3361
3362+++
3363** The variable `memory-full' now remains t until
3364there is no longer a shortage of memory.
3361 3365
3362* Lisp Changes in Emacs 22.1 3366* Lisp Changes in Emacs 22.1
3363 3367
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index f48794a61f4..d0a3104d95e 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,20 @@
12005-10-29 Richard M. Stallman <rms@gnu.org>
2
3 * replace.el (occur-mode-mouse-goto): Always go to other window.
4 (occur-mode-goto-occurrence): Always switch in same window.
5
6 * simple.el (undo): Display message at end, not at start.
7
8 * emacs-lisp/timer.el (timer-activate, timer-activate-when-idle):
9 New arg REUSE-CELL.
10 (cancel-timer-internal): New function.
11 (timer-event-handler): Use cancel-timer-internal,
12 and pass the cell it returns to timer-activate...
13
14 * jit-lock.el (jit-lock-function, jit-lock-stealth-fontify)
15 (jit-lock-deferred-fontify, jit-lock-context-fontify)
16 (jit-lock-after-change): Test memory-full.
17
12005-10-29 Roland Winkler <roland.winkler@physik.uni-erlangen.de> 182005-10-29 Roland Winkler <roland.winkler@physik.uni-erlangen.de>
2 19
3 * textmodes/conf-mode.el (conf-assignment-sign) 20 * textmodes/conf-mode.el (conf-assignment-sign)
diff --git a/lispref/ChangeLog b/lispref/ChangeLog
index 16715350df2..50cb7baa1bc 100644
--- a/lispref/ChangeLog
+++ b/lispref/ChangeLog
@@ -1,3 +1,7 @@
12005-10-29 Richard M. Stallman <rms@gnu.org>
2
3 * internals.texi (Garbage Collection): Document memory-full.
4
12005-10-28 Bill Wohler <wohler@newt.com> 52005-10-28 Bill Wohler <wohler@newt.com>
2 6
3 * tips.texi (Documentation Tips): Help mode now creates hyperlinks 7 * tips.texi (Documentation Tips): Help mode now creates hyperlinks
diff --git a/src/ChangeLog b/src/ChangeLog
index c9db3f69cf2..8e5c9d05b4e 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -11,6 +11,7 @@
11 Don't bother munging text props on a null string. 11 Don't bother munging text props on a null string.
12 Delete obsolete elts from mode_line_proptrans_alist. 12 Delete obsolete elts from mode_line_proptrans_alist.
13 (decode_mode_spec): Test Vmemory_full, not spare_memory. 13 (decode_mode_spec): Test Vmemory_full, not spare_memory.
14 (Fformat_mode_line): Clear mode_line_proptrans_alist after saving.
14 15
15 * lisp.h (memory_full_cons_threshold): Declared. 16 * lisp.h (memory_full_cons_threshold): Declared.
16 (internal_lisp_condition_case): Declared. 17 (internal_lisp_condition_case): Declared.