comparison lispref/display.texi @ 39217:b04316079103

Clarify recent changes.
author Richard M. Stallman <rms@gnu.org>
date Mon, 10 Sep 2001 05:07:54 +0000
parents cb857398a0e0
children 68b26e98aef6
comparison
equal deleted inserted replaced
39216:54660f1e0e30 39217:b04316079103
197 the echo area has been expanded automatically, this brings it back to 197 the echo area has been expanded automatically, this brings it back to
198 its normal size. If the minibuffer is active, this brings the 198 its normal size. If the minibuffer is active, this brings the
199 minibuffer contents back onto the screen immediately. 199 minibuffer contents back onto the screen immediately.
200 200
201 @vindex message-truncate-lines 201 @vindex message-truncate-lines
202 Normally, if the message is longer than one line, the echo area is 202 Normally, displaying a message that is longer than one line resizes
203 resized to display the message in its entirety. But if the variable 203 the echo area to display the entire message. But if the variable
204 @code{message-truncate-lines} is bound to @code{t}, the echo area does 204 @code{message-truncate-lines} is non-@code{nil}, the echo area does
205 not resize, and the message is truncated, as it was done in Emacs 20 205 not resize, and the message is truncated, as in Emacs 20 and before.
206 and before.
207 206
208 @example 207 @example
209 @group 208 @group
210 (message "Minibuffer depth is %d." 209 (message "Minibuffer depth is %d."
211 (minibuffer-depth)) 210 (minibuffer-depth))