aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--etc/NEWS1
-rw-r--r--lisp/ChangeLog8
-rw-r--r--man/ChangeLog5
-rw-r--r--src/ChangeLog10
4 files changed, 24 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 58e30392d12..62f46a2f48c 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -2675,6 +2675,7 @@ strings that have been consed so far.
2675* Lisp-level Display features added after release 2.6 of the Emacs 2675* Lisp-level Display features added after release 2.6 of the Emacs
2676Lisp Manual 2676Lisp Manual
2677 2677
2678+++
2678** The user-option `resize-mini-windows' controls how Emacs resizes 2679** The user-option `resize-mini-windows' controls how Emacs resizes
2679mini-windows. 2680mini-windows.
2680 2681
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 34201247b2a..a0cbb53ab82 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,11 @@
12000-11-08 Gerd Moellmann <gerd@gnu.org>
2
3 * simple.el (shell-command, display-message-or-buffer)
4 (shell-command-on-region): Mention resize-mini-windows in the doc
5 string.
6 (display-message-or-buffer): Take the value of resize-mini-windows
7 into account.
8
12000-11-07 Gerd Moellmann <gerd@gnu.org> 92000-11-07 Gerd Moellmann <gerd@gnu.org>
2 10
3 * macros.el (insert-kbd-macro): Print semi-colons as `?\;'. 11 * macros.el (insert-kbd-macro): Print semi-colons as `?\;'.
diff --git a/man/ChangeLog b/man/ChangeLog
index 7b283daab94..3f1c0cc4527 100644
--- a/man/ChangeLog
+++ b/man/ChangeLog
@@ -1,3 +1,8 @@
12000-11-08 Gerd Moellmann <gerd@gnu.org>
2
3 * mini.texi (Minibuffer Edit): Add description of
4 resize-mini-windows.
5
12000-11-01 Kai Gro,A_(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE> 62000-11-01 Kai Gro,A_(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
2 7
3 * gnus.texi (Fancy Mail Splitting): Explain 8 * gnus.texi (Fancy Mail Splitting): Explain
diff --git a/src/ChangeLog b/src/ChangeLog
index 8aedd54b788..22dfe5b1008 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,15 @@
12000-11-08 Gerd Moellmann <gerd@gnu.org> 12000-11-08 Gerd Moellmann <gerd@gnu.org>
2 2
3 * xdisp.c (syms_of_xdisp): Change doc of max-mini-window-height.
4 (resize_mini_window): Return quickly if Vresize_mini_window is
5 nil. Don't return if Vmax_mini_window_height is nil.
6
7 * xdisp.c (Vresize_mini_window, Qgrow_only): New variables.
8 (syms_of_xdisp): Initialize them.
9 (resize_mini_window): Act according to the setting of
10 Vresize_mini_window.
11 (syms_of_xdisp): Initialize Vmenu_bar_update_hook to nil.
12
3 * xterm.c (x_scroll_bar_create) [USE_TOOLKIT_SCROLL_BARS]: Map the 13 * xterm.c (x_scroll_bar_create) [USE_TOOLKIT_SCROLL_BARS]: Map the
4 scroll bar widget after configuring it, so that it will appear at 14 scroll bar widget after configuring it, so that it will appear at
5 the right position from the start. 15 the right position from the start.