aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2005-06-25 14:38:05 +0000
committerRichard M. Stallman2005-06-25 14:38:05 +0000
commitdf13531dc21070537929cbba1183d6232e91c5de (patch)
tree24a74cca8539a169be451e0f99df552f76c7046d
parent9f5903bb77b7f1f1e7a6598b3c496961e0ee02ea (diff)
downloademacs-df13531dc21070537929cbba1183d6232e91c5de.tar.gz
emacs-df13531dc21070537929cbba1183d6232e91c5de.zip
*** empty log message ***
-rw-r--r--etc/NEWS4
-rw-r--r--lisp/ChangeLog17
-rw-r--r--lispref/ChangeLog7
-rw-r--r--src/ChangeLog14
4 files changed, 41 insertions, 1 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 618da3e801a..eab25b25864 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -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
4099selected window without impacting the order of `buffer-list'. 4099selected window without impacting the order of `buffer-list'.
4100It 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
4108of every frame. This way, it restores everything that can be changed 4109of every frame. This way, it restores everything that can be changed
4109by calling `select-window'. 4110by calling `select-window'. It also saves and restores the current
4111buffer.
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 @@
12005-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
12005-06-24 Richard M. Stallman <rms@gnu.org> 182005-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 @@
12005-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
12005-06-24 Richard M. Stallman <rms@gnu.org> 82005-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 @@
12005-06-25 Richard M. Stallman <rms@gnu.org> 12005-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
52005-06-24 Eli Zaretskii <eliz@gnu.org> 192005-06-24 Eli Zaretskii <eliz@gnu.org>