diff options
| author | Richard M. Stallman | 2005-10-29 20:04:09 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2005-10-29 20:04:09 +0000 |
| commit | 685abb980b4cfb13bc2c7a054bb3090910c05e8f (patch) | |
| tree | 70ece7306b6a91b02d5f23f77859a0cc59ae474f | |
| parent | 27f8fd9959de9a45eac38c22f62d87077ada9652 (diff) | |
| download | emacs-685abb980b4cfb13bc2c7a054bb3090910c05e8f.tar.gz emacs-685abb980b4cfb13bc2c7a054bb3090910c05e8f.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 4 | ||||
| -rw-r--r-- | lisp/ChangeLog | 17 | ||||
| -rw-r--r-- | lispref/ChangeLog | 4 | ||||
| -rw-r--r-- | src/ChangeLog | 1 |
4 files changed, 26 insertions, 0 deletions
| @@ -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 | ||
| 3364 | there 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 @@ | |||
| 1 | 2005-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 | |||
| 1 | 2005-10-29 Roland Winkler <roland.winkler@physik.uni-erlangen.de> | 18 | 2005-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 @@ | |||
| 1 | 2005-10-29 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * internals.texi (Garbage Collection): Document memory-full. | ||
| 4 | |||
| 1 | 2005-10-28 Bill Wohler <wohler@newt.com> | 5 | 2005-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. |