aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2012-04-20 20:14:11 -0400
committerGlenn Morris2012-04-20 20:14:11 -0400
commit9c51bbaa925e7224d82f7f1d9a44513eb20b2ab1 (patch)
tree2f4c4006da790364b33f4e3c7c89aa8cf28813d7
parentdae39d9c22bb027038b698aea2102a9ad10c4c35 (diff)
downloademacs-9c51bbaa925e7224d82f7f1d9a44513eb20b2ab1.tar.gz
emacs-9c51bbaa925e7224d82f7f1d9a44513eb20b2ab1.zip
lispref minibuf.texi small edit
* doc/lispref/minibuf.texi (Intro to Minibuffers): Tweak discussion of resizing minibuffer window.
-rw-r--r--doc/lispref/ChangeLog5
-rw-r--r--doc/lispref/minibuf.texi17
2 files changed, 14 insertions, 8 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index fe555c0458c..06269ebabc3 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,8 @@
12012-04-21 Glenn Morris <rgm@gnu.org>
2
3 * minibuf.texi (Intro to Minibuffers):
4 Tweak discussion of resizing minibuffer window.
5
12012-04-20 Chong Yidong <cyd@gnu.org> 62012-04-20 Chong Yidong <cyd@gnu.org>
2 7
3 * processes.texi (Asynchronous Processes): Mention nil argument to 8 * processes.texi (Asynchronous Processes): Mention nil argument to
diff --git a/doc/lispref/minibuf.texi b/doc/lispref/minibuf.texi
index dbbf1da7490..47ecc9e5893 100644
--- a/doc/lispref/minibuf.texi
+++ b/doc/lispref/minibuf.texi
@@ -58,16 +58,17 @@ including @code{beginning-of-line}, @code{forward-word},
58@code{forward-sentence}, and @code{forward-paragraph}, stop at the 58@code{forward-sentence}, and @code{forward-paragraph}, stop at the
59boundary between the prompt and the actual text. 59boundary between the prompt and the actual text.
60 60
61@c See http://debbugs.gnu.org/11276
61 The minibuffer's window is normally a single line; it grows 62 The minibuffer's window is normally a single line; it grows
62automatically if the contents require more space. You can explicitly 63automatically if the contents require more space. Whilst it is
63@c FIXME? Works in 23.4, not 24.0.95. (Bug#11276) 64active, you can explicitly resize it temporarily with the window
64resize it temporarily with the window sizing commands; it reverts to 65sizing commands; it reverts to its normal size when the minibuffer is
65its normal size when the minibuffer is exited. You can resize it 66exited. When the minibuffer is not active, you can resize it
66@c FIXME? Doesn't work in any version of Emacs?
67permanently by using the window sizing commands in the frame's other 67permanently by using the window sizing commands in the frame's other
68window, when the minibuffer is not active. If the frame contains just 68window, or dragging the mode line with the mouse. (Due to details of
69a minibuffer, you can change the minibuffer's size by changing the 69the current implementation, for this to work @code{resize-mini-windows}
70frame's size. 70must be @code{nil}.) If the frame contains just a minibuffer, you can
71change the minibuffer's size by changing the frame's size.
71 72
72 Use of the minibuffer reads input events, and that alters the values 73 Use of the minibuffer reads input events, and that alters the values
73of variables such as @code{this-command} and @code{last-command} 74of variables such as @code{this-command} and @code{last-command}