diff options
| -rw-r--r-- | etc/NEWS | 4 | ||||
| -rw-r--r-- | lisp/ChangeLog | 17 | ||||
| -rw-r--r-- | lispref/ChangeLog | 7 | ||||
| -rw-r--r-- | src/ChangeLog | 14 |
4 files changed, 41 insertions, 1 deletions
| @@ -4097,6 +4097,7 @@ return window edges in units of pixels, rather than columns and lines. | |||
| 4097 | +++ | 4097 | +++ |
| 4098 | *** The new macro `with-selected-window' temporarily switches the | 4098 | *** The new macro `with-selected-window' temporarily switches the |
| 4099 | selected window without impacting the order of `buffer-list'. | 4099 | selected window without impacting the order of `buffer-list'. |
| 4100 | It saves and restores the current buffer, too. | ||
| 4100 | 4101 | ||
| 4101 | +++ | 4102 | +++ |
| 4102 | *** `select-window' takes an optional second argument NORECORD. | 4103 | *** `select-window' takes an optional second argument NORECORD. |
| @@ -4106,7 +4107,8 @@ This is like `switch-to-buffer'. | |||
| 4106 | +++ | 4107 | +++ |
| 4107 | *** `save-selected-window' now saves and restores the selected window | 4108 | *** `save-selected-window' now saves and restores the selected window |
| 4108 | of every frame. This way, it restores everything that can be changed | 4109 | of every frame. This way, it restores everything that can be changed |
| 4109 | by calling `select-window'. | 4110 | by calling `select-window'. It also saves and restores the current |
| 4111 | buffer. | ||
| 4110 | 4112 | ||
| 4111 | +++ | 4113 | +++ |
| 4112 | *** `set-window-buffer' has an optional argument KEEP-MARGINS. | 4114 | *** `set-window-buffer' has an optional argument KEEP-MARGINS. |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f1552757440..9d879823f8a 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,20 @@ | |||
| 1 | 2005-06-25 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * jka-compr.el (jka-compr-insert-file-contents): | ||
| 4 | Special handling if cannot find the uncompression program. | ||
| 5 | |||
| 6 | * cus-face.el (custom-face-attributes): Add autoload. | ||
| 7 | |||
| 8 | * emacs-lisp/lisp-mode.el (lisp-mode-variables): | ||
| 9 | Bind comment-indent-function locally. | ||
| 10 | |||
| 11 | * window.el (save-selected-window): Use save-current-buffer. | ||
| 12 | |||
| 13 | * subr.el (with-selected-window): Use save-current-buffer. | ||
| 14 | |||
| 15 | * progmodes/gud.el (gud-filter): Simplify using with-selected-window | ||
| 16 | and with-current-buffer. | ||
| 17 | |||
| 1 | 2005-06-24 Richard M. Stallman <rms@gnu.org> | 18 | 2005-06-24 Richard M. Stallman <rms@gnu.org> |
| 2 | 19 | ||
| 3 | * simple.el (line-move-1): Fix previous change. | 20 | * simple.el (line-move-1): Fix previous change. |
diff --git a/lispref/ChangeLog b/lispref/ChangeLog index 3ba2405e1a1..5e70467405e 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog | |||
| @@ -1,3 +1,10 @@ | |||
| 1 | 2005-06-25 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * objects.texi (Equality Predicates): Clarify meaning of equal. | ||
| 4 | |||
| 5 | * windows.texi (Selecting Windows): save-selected-window | ||
| 6 | and with-selected-window save and restore the current buffer. | ||
| 7 | |||
| 1 | 2005-06-24 Richard M. Stallman <rms@gnu.org> | 8 | 2005-06-24 Richard M. Stallman <rms@gnu.org> |
| 2 | 9 | ||
| 3 | * numbers.texi (Float Basics): Explain how to test for NaN, | 10 | * numbers.texi (Float Basics): Explain how to test for NaN, |
diff --git a/src/ChangeLog b/src/ChangeLog index 44f00321d36..17917b159e3 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,19 @@ | |||
| 1 | 2005-06-25 Richard M. Stallman <rms@gnu.org> | 1 | 2005-06-25 Richard M. Stallman <rms@gnu.org> |
| 2 | 2 | ||
| 3 | * eval.c (call_debugger): Take full care of extending stack limits | ||
| 4 | to make space for the debugger, and restore the change afterward. | ||
| 5 | Bind debug-on-error to nil. | ||
| 6 | (restore_stack_limits): New subroutine. | ||
| 7 | (Fsignal): Extend specpdl bound along with eval depth bound, | ||
| 8 | for calling edebug. Don't do either one, for calling debugger. | ||
| 9 | (find_handler_clause): Don't bind debug-on-error here. | ||
| 10 | Don't unbind anything either. | ||
| 11 | Temporarily advance max_specpdl_size for calling | ||
| 12 | internal_with_output_to_temp_buffer. | ||
| 13 | (grow_specpdl): Don't alter max_specpdl_size before signaling | ||
| 14 | an error. | ||
| 15 | (syms_of_eval) <max-specpdl-size>: Doc fix. | ||
| 16 | |||
| 3 | * lread.c (read1): 0.0e+NaN should make a "positive" NaN. | 17 | * lread.c (read1): 0.0e+NaN should make a "positive" NaN. |
| 4 | 18 | ||
| 5 | 2005-06-24 Eli Zaretskii <eliz@gnu.org> | 19 | 2005-06-24 Eli Zaretskii <eliz@gnu.org> |