From: Richard M. Stallman Date: Sat, 29 Oct 2005 20:04:09 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: emacs-pretest-22.0.90~6201 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=685abb980b4cfb13bc2c7a054bb3090910c05e8f;p=emacs.git *** empty log message *** --- 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 --- ** Support for Mocklisp has been removed. + ++++ +** The variable `memory-full' now remains t until +there is no longer a shortage of memory. * Lisp Changes in Emacs 22.1 diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f48794a61f4..d0a3104d95e 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,20 @@ +2005-10-29 Richard M. Stallman + + * replace.el (occur-mode-mouse-goto): Always go to other window. + (occur-mode-goto-occurrence): Always switch in same window. + + * simple.el (undo): Display message at end, not at start. + + * emacs-lisp/timer.el (timer-activate, timer-activate-when-idle): + New arg REUSE-CELL. + (cancel-timer-internal): New function. + (timer-event-handler): Use cancel-timer-internal, + and pass the cell it returns to timer-activate... + + * jit-lock.el (jit-lock-function, jit-lock-stealth-fontify) + (jit-lock-deferred-fontify, jit-lock-context-fontify) + (jit-lock-after-change): Test memory-full. + 2005-10-29 Roland Winkler * 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 @@ +2005-10-29 Richard M. Stallman + + * internals.texi (Garbage Collection): Document memory-full. + 2005-10-28 Bill Wohler * 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 @@ Don't bother munging text props on a null string. Delete obsolete elts from mode_line_proptrans_alist. (decode_mode_spec): Test Vmemory_full, not spare_memory. + (Fformat_mode_line): Clear mode_line_proptrans_alist after saving. * lisp.h (memory_full_cons_threshold): Declared. (internal_lisp_condition_case): Declared.