aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2006-07-08 22:28:59 +0000
committerKim F. Storm2006-07-08 22:28:59 +0000
commit2735e1095016ff9eca7470a458a767cff81b2632 (patch)
tree00aae3ab1e746c07d2d0dd6e6f24c2c34aed4e6c
parent5a1048a5480471aaf16e1ba397f584fc45d078d0 (diff)
downloademacs-2735e1095016ff9eca7470a458a767cff81b2632.tar.gz
emacs-2735e1095016ff9eca7470a458a767cff81b2632.zip
(Refresh Screen): Clarify force-window-update.
(Truncation): "Normally" indicated by fringe arrows.
-rw-r--r--lispref/display.texi17
1 files changed, 10 insertions, 7 deletions
diff --git a/lispref/display.texi b/lispref/display.texi
index 641511fe66e..c57c795e58d 100644
--- a/lispref/display.texi
+++ b/lispref/display.texi
@@ -59,8 +59,8 @@ This function clears and redisplays all visible frames.
59redisplay is done, but does not clear them first. 59redisplay is done, but does not clear them first.
60 60
61@defun force-window-update &optional object 61@defun force-window-update &optional object
62This function forces redisplay of some or all windows. If 62This function forces some or all windows to be updated on next redisplay.
63@var{object} is a window, it forces redisplay of that window. If 63If @var{object} is a window, it forces redisplay of that window. If
64@var{object} is a buffer or buffer name, it forces redisplay of all 64@var{object} is a buffer or buffer name, it forces redisplay of all
65windows displaying that buffer. If @var{object} is @code{nil} (or 65windows displaying that buffer. If @var{object} is @code{nil} (or
66omitted), it forces redisplay of all windows. 66omitted), it forces redisplay of all windows.
@@ -128,11 +128,14 @@ pending, use @code{(sit-for -1)}.
128 When a line of text extends beyond the right edge of a window, the 128 When a line of text extends beyond the right edge of a window, the
129line can either be continued on the next screen line, or truncated to 129line can either be continued on the next screen line, or truncated to
130one screen line. The additional screen lines used to display a long 130one screen line. The additional screen lines used to display a long
131text line are called @dfn{continuation} lines. Normally, a @samp{$} in 131text line are called @dfn{continuation} lines. Normally, tiny arrow images
132the rightmost column of the window indicates truncation; a @samp{\} on 132are displayed in the window fringes to indicate truncated and continued
133the rightmost column indicates a line that ``wraps'' onto the next line, 133lines (*note Fringes).
134which is also called @dfn{continuing} the line. (The display table can 134
135specify alternative indicators; see @ref{Display Tables}.) 135 On a text terminal, a `$' in the rightmost column of the window
136indicates truncation; a `\' on the rightmost column indicates a
137continued line that "wraps" onto the next line. (The display table can
138specify alternative indicators; see *Note Display Tables.)
136 139
137 On a graphical display, the @samp{$} and @samp{\} indicators are 140 On a graphical display, the @samp{$} and @samp{\} indicators are
138replaced with arrow images displayed in the window fringes 141replaced with arrow images displayed in the window fringes