aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2001-09-08 17:49:11 +0000
committerEli Zaretskii2001-09-08 17:49:11 +0000
commita2f2ceaaf7d48d2be32aaab4a58ef27636803250 (patch)
tree3b0f1b44219d5cbeb7801ae28a3c72f7d4f324c9
parentbf23b4777a7320c5b9585611761c869194eb5de2 (diff)
downloademacs-a2f2ceaaf7d48d2be32aaab4a58ef27636803250.tar.gz
emacs-a2f2ceaaf7d48d2be32aaab4a58ef27636803250.zip
(The Echo Area) <message>: Document message-truncate-lines.
(Glyphs): Document that the glyph table is unused on windowed displays.
-rw-r--r--lispref/display.texi11
1 files changed, 9 insertions, 2 deletions
diff --git a/lispref/display.texi b/lispref/display.texi
index 70b2524147c..5604a341c4d 100644
--- a/lispref/display.texi
+++ b/lispref/display.texi
@@ -180,7 +180,7 @@ functions with @code{t} as the stream (@pxref{Output Functions}), or as
180follows: 180follows:
181 181
182@defun message string &rest arguments 182@defun message string &rest arguments
183This function displays a one-line message in the echo area. The 183This function displays a message in the echo area. The
184argument @var{string} is similar to a C language @code{printf} control 184argument @var{string} is similar to a C language @code{printf} control
185string. See @code{format} in @ref{String Conversion}, for the details 185string. See @code{format} in @ref{String Conversion}, for the details
186on the conversion specifications. @code{message} returns the 186on the conversion specifications. @code{message} returns the
@@ -198,6 +198,13 @@ the echo area has been expanded automatically, this brings it back to
198its normal size. If the minibuffer is active, this brings the 198its normal size. If the minibuffer is active, this brings the
199minibuffer contents back onto the screen immediately. 199minibuffer contents back onto the screen immediately.
200 200
201@vindex message-truncate-lines
202Normally, if the message is longer than one line, the echo area is
203resized to display the message in its entirety. But if the variable
204@code{message-truncate-lines} is bound to @code{t}, the echo area does
205not resize, and the message is truncated, as it was done in Emacs 20
206and before.
207
201@example 208@example
202@group 209@group
203(message "Minibuffer depth is %d." 210(message "Minibuffer depth is %d."
@@ -3298,7 +3305,7 @@ table, which is the value of the variable @code{glyph-table}.
3298The value of this variable is the current glyph table. It should be a 3305The value of this variable is the current glyph table. It should be a
3299vector; the @var{g}th element defines glyph code @var{g}. If the value 3306vector; the @var{g}th element defines glyph code @var{g}. If the value
3300is @code{nil} instead of a vector, then all glyphs are simple (see 3307is @code{nil} instead of a vector, then all glyphs are simple (see
3301below). 3308below). The glyph table is not used on windowed displays.
3302@end defvar 3309@end defvar
3303 3310
3304 Here are the possible types of elements in the glyph table: 3311 Here are the possible types of elements in the glyph table: