Allow querying font by name for its height and other info. (Bug#19395)
[emacs.git] / doc / lispref / display.texi
blob48860c8ebef7e313fa4022e2267406c0f6b90988
1 @c -*-texinfo-*-
2 @c This is part of the GNU Emacs Lisp Reference Manual.
3 @c Copyright (C) 1990-1995, 1998-2014 Free Software Foundation, Inc.
4 @c See the file elisp.texi for copying conditions.
5 @node Display
6 @chapter Emacs Display
8   This chapter describes a number of features related to the display
9 that Emacs presents to the user.
11 @menu
12 * Refresh Screen::      Clearing the screen and redrawing everything on it.
13 * Forcing Redisplay::   Forcing redisplay.
14 * Truncation::          Folding or wrapping long text lines.
15 * The Echo Area::       Displaying messages at the bottom of the screen.
16 * Warnings::            Displaying warning messages for the user.
17 * Invisible Text::      Hiding part of the buffer text.
18 * Selective Display::   Hiding part of the buffer text (the old way).
19 * Temporary Displays::  Displays that go away automatically.
20 * Overlays::            Use overlays to highlight parts of the buffer.
21 * Size of Displayed Text::  How large displayed text is.
22 * Line Height::         Controlling the height of lines.
23 * Faces::               A face defines a graphics style for text characters:
24                           font, colors, etc.
25 * Fringes::             Controlling window fringes.
26 * Scroll Bars::         Controlling scroll bars.
27 * Window Dividers::     Separating windows visually.
28 * Display Property::    Enabling special display features.
29 * Images::              Displaying images in Emacs buffers.
30 * Buttons::             Adding clickable buttons to Emacs buffers.
31 * Abstract Display::    Emacs's Widget for Object Collections.
32 * Blinking::            How Emacs shows the matching open parenthesis.
33 * Character Display::   How Emacs displays individual characters.
34 * Beeping::             Audible signal to the user.
35 * Window Systems::      Which window system is being used.
36 * Bidirectional Display:: Display of bidirectional scripts, such as
37                              Arabic and Farsi.
38 @end menu
40 @node Refresh Screen
41 @section Refreshing the Screen
43   The function @code{redraw-frame} clears and redisplays the entire
44 contents of a given frame (@pxref{Frames}).  This is useful if the
45 screen is corrupted.
47 @defun redraw-frame frame
48 This function clears and redisplays frame @var{frame}.
49 @end defun
51   Even more powerful is @code{redraw-display}:
53 @deffn Command redraw-display
54 This function clears and redisplays all visible frames.
55 @end deffn
57   In Emacs, processing user input takes priority over redisplay.  If
58 you call these functions when input is available, they don't redisplay
59 immediately, but the requested redisplay does happen
60 eventually---after all the input has been processed.
62   On text terminals, suspending and resuming Emacs normally also
63 refreshes the screen.  Some terminal emulators record separate
64 contents for display-oriented programs such as Emacs and for ordinary
65 sequential display.  If you are using such a terminal, you might want
66 to inhibit the redisplay on resumption.
68 @defopt no-redraw-on-reenter
69 @cindex suspend (cf. @code{no-redraw-on-reenter})
70 @cindex resume (cf. @code{no-redraw-on-reenter})
71 This variable controls whether Emacs redraws the entire screen after it
72 has been suspended and resumed.  Non-@code{nil} means there is no need
73 to redraw, @code{nil} means redrawing is needed.  The default is @code{nil}.
74 @end defopt
76 @node Forcing Redisplay
77 @section Forcing Redisplay
78 @cindex forcing redisplay
80   Emacs normally tries to redisplay the screen whenever it waits for
81 input.  With the following function, you can request an immediate
82 attempt to redisplay, in the middle of Lisp code, without actually
83 waiting for input.
85 @defun redisplay &optional force
86 This function tries immediately to redisplay.  The optional argument
87 @var{force}, if non-@code{nil}, forces the redisplay to be performed,
88 instead of being preempted, even if input is pending and the variable
89 @code{redisplay-dont-pause} is @code{nil} (see below).  If
90 @code{redisplay-dont-pause} is non-@code{nil} (the default), this
91 function redisplays in any case, i.e., @var{force} does nothing.
93 The function returns @code{t} if it actually tried to redisplay, and
94 @code{nil} otherwise.  A value of @code{t} does not mean that
95 redisplay proceeded to completion; it could have been preempted by
96 newly arriving input.
97 @end defun
99 @defvar redisplay-dont-pause
100 If this variable is @code{nil}, arriving input events preempt
101 redisplay; Emacs avoids starting a redisplay, and stops any redisplay
102 that is in progress, until the input has been processed.  In
103 particular, @code{(redisplay)} returns @code{nil} without actually
104 redisplaying, if there is pending input.
106 The default value is @code{t}, which means that pending input does not
107 preempt redisplay.
108 @end defvar
110 @defvar redisplay-preemption-period
111 If @code{redisplay-dont-pause} is @code{nil}, this variable specifies
112 how many seconds Emacs waits between checks for new input during
113 redisplay; if input arrives during this interval, redisplay stops and
114 the input is processed.  The default value is 0.1; if the value is
115 @code{nil}, Emacs does not check for input during redisplay.
117 This variable has no effect when @code{redisplay-dont-pause} is
118 non-@code{nil} (the default).
119 @end defvar
121 @defvar pre-redisplay-function
122 A function run just before redisplay.  It is called with one argument,
123 the set of windows to redisplay.
124 @end defvar
126   Although @code{redisplay} tries immediately to redisplay, it does
127 not change how Emacs decides which parts of its frame(s) to redisplay.
128 By contrast, the following function adds certain windows to the
129 pending redisplay work (as if their contents had completely changed),
130 but does not immediately try to perform redisplay.
132 @defun force-window-update &optional object
133 This function forces some or all windows to be updated the next time
134 Emacs does a redisplay.  If @var{object} is a window, that window is
135 to be updated.  If @var{object} is a buffer or buffer name, all
136 windows displaying that buffer are to be updated.  If @var{object} is
137 @code{nil} (or omitted), all windows are to be updated.
139 This function does not do a redisplay immediately; Emacs does that as
140 it waits for input, or when the function @code{redisplay} is called.
141 @end defun
143 @node Truncation
144 @section Truncation
145 @cindex line wrapping
146 @cindex line truncation
147 @cindex continuation lines
148 @cindex @samp{$} in display
149 @cindex @samp{\} in display
151   When a line of text extends beyond the right edge of a window, Emacs
152 can @dfn{continue} the line (make it ``wrap'' to the next screen
153 line), or @dfn{truncate} the line (limit it to one screen line).  The
154 additional screen lines used to display a long text line are called
155 @dfn{continuation} lines.  Continuation is not the same as filling;
156 continuation happens on the screen only, not in the buffer contents,
157 and it breaks a line precisely at the right margin, not at a word
158 boundary.  @xref{Filling}.
160    On a graphical display, tiny arrow images in the window fringes
161 indicate truncated and continued lines (@pxref{Fringes}).  On a text
162 terminal, a @samp{$} in the rightmost column of the window indicates
163 truncation; a @samp{\} on the rightmost column indicates a line that
164 ``wraps''.  (The display table can specify alternate characters to use
165 for this; @pxref{Display Tables}).
167 @defopt truncate-lines
168 If this buffer-local variable is non-@code{nil}, lines that extend
169 beyond the right edge of the window are truncated; otherwise, they are
170 continued.  As a special exception, the variable
171 @code{truncate-partial-width-windows} takes precedence in
172 @dfn{partial-width} windows (i.e., windows that do not occupy the
173 entire frame width).
174 @end defopt
176 @defopt truncate-partial-width-windows
177 @cindex partial-width windows
178 This variable controls line truncation in @dfn{partial-width} windows.
179 A partial-width window is one that does not occupy the entire frame
180 width (@pxref{Splitting Windows}).  If the value is @code{nil}, line
181 truncation is determined by the variable @code{truncate-lines} (see
182 above).  If the value is an integer @var{n}, lines are truncated if
183 the partial-width window has fewer than @var{n} columns, regardless of
184 the value of @code{truncate-lines}; if the partial-width window has
185 @var{n} or more columns, line truncation is determined by
186 @code{truncate-lines}.  For any other non-@code{nil} value, lines are
187 truncated in every partial-width window, regardless of the value of
188 @code{truncate-lines}.
189 @end defopt
191   When horizontal scrolling (@pxref{Horizontal Scrolling}) is in use in
192 a window, that forces truncation.
194 @defvar wrap-prefix
195 If this buffer-local variable is non-@code{nil}, it defines a
196 @dfn{wrap prefix} which Emacs displays at the start of every
197 continuation line.  (If lines are truncated, @code{wrap-prefix} is
198 never used.)  Its value may be a string or an image (@pxref{Other
199 Display Specs}), or a stretch of whitespace such as specified by the
200 @code{:width} or @code{:align-to} display properties (@pxref{Specified
201 Space}).  The value is interpreted in the same way as a @code{display}
202 text property.  @xref{Display Property}.
204 A wrap prefix may also be specified for regions of text, using the
205 @code{wrap-prefix} text or overlay property.  This takes precedence
206 over the @code{wrap-prefix} variable.  @xref{Special Properties}.
207 @end defvar
209 @defvar line-prefix
210 If this buffer-local variable is non-@code{nil}, it defines a
211 @dfn{line prefix} which Emacs displays at the start of every
212 non-continuation line.  Its value may be a string or an image
213 (@pxref{Other Display Specs}), or a stretch of whitespace such as
214 specified by the @code{:width} or @code{:align-to} display properties
215 (@pxref{Specified Space}).  The value is interpreted in the same way
216 as a @code{display} text property.  @xref{Display Property}.
218 A line prefix may also be specified for regions of text using the
219 @code{line-prefix} text or overlay property.  This takes precedence
220 over the @code{line-prefix} variable.  @xref{Special Properties}.
221 @end defvar
223 @ignore
224   If your buffer contains only very short lines, you might find it
225 advisable to set @code{cache-long-scans} to @code{nil}.
227 @defvar cache-long-scans
228 If this variable is non-@code{nil} (the default), various indentation
229 and motion functions, and Emacs redisplay, cache the results of
230 scanning the buffer, and consult the cache to avoid rescanning regions
231 of the buffer unless they are modified.
233 Turning off the cache speeds up processing of short lines somewhat.
235 This variable is automatically buffer-local in every buffer.
236 @end defvar
237 @end ignore
239 @node The Echo Area
240 @section The Echo Area
241 @cindex error display
242 @cindex echo area
244 @c FIXME: Why not use @xref{Minibuffers} directly?  --xfq
245   The @dfn{echo area} is used for displaying error messages
246 (@pxref{Errors}), for messages made with the @code{message} primitive,
247 and for echoing keystrokes.  It is not the same as the minibuffer,
248 despite the fact that the minibuffer appears (when active) in the same
249 place on the screen as the echo area.  @xref{Minibuffer,, The
250 Minibuffer, emacs, The GNU Emacs Manual}.
252   Apart from the functions documented in this section, you can print
253 Lisp objects to the echo area by specifying @code{t} as the output
254 stream.  @xref{Output Streams}.
256 @menu
257 * Displaying Messages:: Explicitly displaying text in the echo area.
258 * Progress::            Informing user about progress of a long operation.
259 * Logging Messages::    Echo area messages are logged for the user.
260 * Echo Area Customization:: Controlling the echo area.
261 @end menu
263 @node Displaying Messages
264 @subsection Displaying Messages in the Echo Area
265 @cindex display message in echo area
267   This section describes the standard functions for displaying
268 messages in the echo area.
270 @defun message format-string &rest arguments
271 This function displays a message in the echo area.
272 @var{format-string} is a format string, and @var{arguments} are the
273 objects for its format specifications, like in the @code{format}
274 function (@pxref{Formatting Strings}).  The resulting formatted string
275 is displayed in the echo area; if it contains @code{face} text
276 properties, it is displayed with the specified faces (@pxref{Faces}).
277 The string is also added to the @file{*Messages*} buffer, but without
278 text properties (@pxref{Logging Messages}).
280 In batch mode, the message is printed to the standard error stream,
281 followed by a newline.
283 If @var{format-string} is @code{nil} or the empty string,
284 @code{message} clears the echo area; if the echo area has been
285 expanded automatically, this brings it back to its normal size.  If
286 the minibuffer is active, this brings the minibuffer contents back
287 onto the screen immediately.
289 @example
290 @group
291 (message "Minibuffer depth is %d."
292          (minibuffer-depth))
293  @print{} Minibuffer depth is 0.
294 @result{} "Minibuffer depth is 0."
295 @end group
297 @group
298 ---------- Echo Area ----------
299 Minibuffer depth is 0.
300 ---------- Echo Area ----------
301 @end group
302 @end example
304 To automatically display a message in the echo area or in a pop-buffer,
305 depending on its size, use @code{display-message-or-buffer} (see below).
306 @end defun
308 @defmac with-temp-message message &rest body
309 This construct displays a message in the echo area temporarily, during
310 the execution of @var{body}.  It displays @var{message}, executes
311 @var{body}, then returns the value of the last body form while restoring
312 the previous echo area contents.
313 @end defmac
315 @defun message-or-box format-string &rest arguments
316 This function displays a message like @code{message}, but may display it
317 in a dialog box instead of the echo area.  If this function is called in
318 a command that was invoked using the mouse---more precisely, if
319 @code{last-nonmenu-event} (@pxref{Command Loop Info}) is either
320 @code{nil} or a list---then it uses a dialog box or pop-up menu to
321 display the message.  Otherwise, it uses the echo area.  (This is the
322 same criterion that @code{y-or-n-p} uses to make a similar decision; see
323 @ref{Yes-or-No Queries}.)
325 You can force use of the mouse or of the echo area by binding
326 @code{last-nonmenu-event} to a suitable value around the call.
327 @end defun
329 @defun message-box format-string &rest arguments
330 @anchor{message-box}
331 This function displays a message like @code{message}, but uses a dialog
332 box (or a pop-up menu) whenever that is possible.  If it is impossible
333 to use a dialog box or pop-up menu, because the terminal does not
334 support them, then @code{message-box} uses the echo area, like
335 @code{message}.
336 @end defun
338 @defun display-message-or-buffer message &optional buffer-name not-this-window frame
339 This function displays the message @var{message}, which may be either a
340 string or a buffer.  If it is shorter than the maximum height of the
341 echo area, as defined by @code{max-mini-window-height}, it is displayed
342 in the echo area, using @code{message}.  Otherwise,
343 @code{display-buffer} is used to show it in a pop-up buffer.
345 Returns either the string shown in the echo area, or when a pop-up
346 buffer is used, the window used to display it.
348 If @var{message} is a string, then the optional argument
349 @var{buffer-name} is the name of the buffer used to display it when a
350 pop-up buffer is used, defaulting to @file{*Message*}.  In the case
351 where @var{message} is a string and displayed in the echo area, it is
352 not specified whether the contents are inserted into the buffer anyway.
354 The optional arguments @var{not-this-window} and @var{frame} are as for
355 @code{display-buffer}, and only used if a buffer is displayed.
356 @end defun
358 @defun current-message
359 This function returns the message currently being displayed in the
360 echo area, or @code{nil} if there is none.
361 @end defun
363 @node Progress
364 @subsection Reporting Operation Progress
365 @cindex progress reporting
367   When an operation can take a while to finish, you should inform the
368 user about the progress it makes.  This way the user can estimate
369 remaining time and clearly see that Emacs is busy working, not hung.
370 A convenient way to do this is to use a @dfn{progress reporter}.
372   Here is a working example that does nothing useful:
374 @smallexample
375 (let ((progress-reporter
376        (make-progress-reporter "Collecting mana for Emacs..."
377                                0  500)))
378   (dotimes (k 500)
379     (sit-for 0.01)
380     (progress-reporter-update progress-reporter k))
381   (progress-reporter-done progress-reporter))
382 @end smallexample
384 @defun make-progress-reporter message &optional min-value max-value current-value min-change min-time
385 This function creates and returns a progress reporter object, which
386 you will use as an argument for the other functions listed below.  The
387 idea is to precompute as much data as possible to make progress
388 reporting very fast.
390 When this progress reporter is subsequently used, it will display
391 @var{message} in the echo area, followed by progress percentage.
392 @var{message} is treated as a simple string.  If you need it to depend
393 on a filename, for instance, use @code{format} before calling this
394 function.
396 The arguments @var{min-value} and @var{max-value} should be numbers
397 standing for the starting and final states of the operation.  For
398 instance, an operation that ``scans'' a buffer should set these to the
399 results of @code{point-min} and @code{point-max} correspondingly.
400 @var{max-value} should be greater than @var{min-value}.
402 Alternatively, you can set @var{min-value} and @var{max-value} to
403 @code{nil}.  In that case, the progress reporter does not report
404 process percentages; it instead displays a ``spinner'' that rotates a
405 notch each time you update the progress reporter.
407 If @var{min-value} and @var{max-value} are numbers, you can give the
408 argument @var{current-value} a numerical value specifying the initial
409 progress; if omitted, this defaults to @var{min-value}.
411 The remaining arguments control the rate of echo area updates.  The
412 progress reporter will wait for at least @var{min-change} more
413 percents of the operation to be completed before printing next
414 message; the default is one percent.  @var{min-time} specifies the
415 minimum time in seconds to pass between successive prints; the default
416 is 0.2 seconds.  (On some operating systems, the progress reporter may
417 handle fractions of seconds with varying precision).
419 This function calls @code{progress-reporter-update}, so the first
420 message is printed immediately.
421 @end defun
423 @defun progress-reporter-update reporter &optional value
424 This function does the main work of reporting progress of your
425 operation.  It displays the message of @var{reporter}, followed by
426 progress percentage determined by @var{value}.  If percentage is zero,
427 or close enough according to the @var{min-change} and @var{min-time}
428 arguments, then it is omitted from the output.
430 @var{reporter} must be the result of a call to
431 @code{make-progress-reporter}.  @var{value} specifies the current
432 state of your operation and must be between @var{min-value} and
433 @var{max-value} (inclusive) as passed to
434 @code{make-progress-reporter}.  For instance, if you scan a buffer,
435 then @var{value} should be the result of a call to @code{point}.
437 This function respects @var{min-change} and @var{min-time} as passed
438 to @code{make-progress-reporter} and so does not output new messages
439 on every invocation.  It is thus very fast and normally you should not
440 try to reduce the number of calls to it: resulting overhead will most
441 likely negate your effort.
442 @end defun
444 @defun progress-reporter-force-update reporter &optional value new-message
445 This function is similar to @code{progress-reporter-update} except
446 that it prints a message in the echo area unconditionally.
448 The first two arguments have the same meaning as for
449 @code{progress-reporter-update}.  Optional @var{new-message} allows
450 you to change the message of the @var{reporter}.  Since this function
451 always updates the echo area, such a change will be immediately
452 presented to the user.
453 @end defun
455 @defun progress-reporter-done reporter
456 This function should be called when the operation is finished.  It
457 prints the message of @var{reporter} followed by word ``done'' in the
458 echo area.
460 You should always call this function and not hope for
461 @code{progress-reporter-update} to print ``100%''.  Firstly, it may
462 never print it, there are many good reasons for this not to happen.
463 Secondly, ``done'' is more explicit.
464 @end defun
466 @defmac dotimes-with-progress-reporter (var count [result]) message body@dots{}
467 This is a convenience macro that works the same way as @code{dotimes}
468 does, but also reports loop progress using the functions described
469 above.  It allows you to save some typing.
471 You can rewrite the example in the beginning of this node using
472 this macro this way:
474 @example
475 (dotimes-with-progress-reporter
476     (k 500)
477     "Collecting some mana for Emacs..."
478   (sit-for 0.01))
479 @end example
480 @end defmac
482 @node Logging Messages
483 @subsection Logging Messages in @file{*Messages*}
484 @cindex logging echo-area messages
486   Almost all the messages displayed in the echo area are also recorded
487 in the @file{*Messages*} buffer so that the user can refer back to
488 them.  This includes all the messages that are output with
489 @code{message}.  By default, this buffer is read-only and uses the major
490 mode @code{messages-buffer-mode}.  Nothing prevents the user from
491 killing the @file{*Messages*} buffer, but the next display of a message
492 recreates it.  Any Lisp code that needs to access the
493 @file{*Messages*} buffer directly and wants to ensure that it exists
494 should use the function @code{messages-buffer}.
496 @defun messages-buffer
497 This function returns the @file{*Messages*} buffer.  If it does not
498 exist, it creates it, and switches it to @code{messages-buffer-mode}.
499 @end defun
501 @defopt message-log-max
502 This variable specifies how many lines to keep in the @file{*Messages*}
503 buffer.  The value @code{t} means there is no limit on how many lines to
504 keep.  The value @code{nil} disables message logging entirely.  Here's
505 how to display a message and prevent it from being logged:
507 @example
508 (let (message-log-max)
509   (message @dots{}))
510 @end example
511 @end defopt
513   To make @file{*Messages*} more convenient for the user, the logging
514 facility combines successive identical messages.  It also combines
515 successive related messages for the sake of two cases: question
516 followed by answer, and a series of progress messages.
518   A ``question followed by an answer'' means two messages like the
519 ones produced by @code{y-or-n-p}: the first is @samp{@var{question}},
520 and the second is @samp{@var{question}...@var{answer}}.  The first
521 message conveys no additional information beyond what's in the second,
522 so logging the second message discards the first from the log.
524   A ``series of progress messages'' means successive messages like
525 those produced by @code{make-progress-reporter}.  They have the form
526 @samp{@var{base}...@var{how-far}}, where @var{base} is the same each
527 time, while @var{how-far} varies.  Logging each message in the series
528 discards the previous one, provided they are consecutive.
530   The functions @code{make-progress-reporter} and @code{y-or-n-p}
531 don't have to do anything special to activate the message log
532 combination feature.  It operates whenever two consecutive messages
533 are logged that share a common prefix ending in @samp{...}.
535 @node Echo Area Customization
536 @subsection Echo Area Customization
538   These variables control details of how the echo area works.
540 @defvar cursor-in-echo-area
541 This variable controls where the cursor appears when a message is
542 displayed in the echo area.  If it is non-@code{nil}, then the cursor
543 appears at the end of the message.  Otherwise, the cursor appears at
544 point---not in the echo area at all.
546 The value is normally @code{nil}; Lisp programs bind it to @code{t}
547 for brief periods of time.
548 @end defvar
550 @defvar echo-area-clear-hook
551 This normal hook is run whenever the echo area is cleared---either by
552 @code{(message nil)} or for any other reason.
553 @end defvar
555 @defopt echo-keystrokes
556 This variable determines how much time should elapse before command
557 characters echo.  Its value must be a number, and specifies the
558 number of seconds to wait before echoing.  If the user types a prefix
559 key (such as @kbd{C-x}) and then delays this many seconds before
560 continuing, the prefix key is echoed in the echo area.  (Once echoing
561 begins in a key sequence, all subsequent characters in the same key
562 sequence are echoed immediately.)
564 If the value is zero, then command input is not echoed.
565 @end defopt
567 @defvar message-truncate-lines
568 Normally, displaying a long message resizes the echo area to display
569 the entire message.  But if the variable @code{message-truncate-lines}
570 is non-@code{nil}, the echo area does not resize, and the message is
571 truncated to fit it.
572 @end defvar
574   The variable @code{max-mini-window-height}, which specifies the
575 maximum height for resizing minibuffer windows, also applies to the
576 echo area (which is really a special use of the minibuffer window;
577 @pxref{Minibuffer Misc}).
579 @node Warnings
580 @section Reporting Warnings
581 @cindex warnings
583   @dfn{Warnings} are a facility for a program to inform the user of a
584 possible problem, but continue running.
586 @menu
587 * Warning Basics::      Warnings concepts and functions to report them.
588 * Warning Variables::   Variables programs bind to customize their warnings.
589 * Warning Options::     Variables users set to control display of warnings.
590 * Delayed Warnings::    Deferring a warning until the end of a command.
591 @end menu
593 @node Warning Basics
594 @subsection Warning Basics
595 @cindex severity level
597   Every warning has a textual message, which explains the problem for
598 the user, and a @dfn{severity level} which is a symbol.  Here are the
599 possible severity levels, in order of decreasing severity, and their
600 meanings:
602 @table @code
603 @item :emergency
604 A problem that will seriously impair Emacs operation soon
605 if you do not attend to it promptly.
606 @item :error
607 A report of data or circumstances that are inherently wrong.
608 @item :warning
609 A report of data or circumstances that are not inherently wrong, but
610 raise suspicion of a possible problem.
611 @item :debug
612 A report of information that may be useful if you are debugging.
613 @end table
615   When your program encounters invalid input data, it can either
616 signal a Lisp error by calling @code{error} or @code{signal} or report
617 a warning with severity @code{:error}.  Signaling a Lisp error is the
618 easiest thing to do, but it means the program cannot continue
619 processing.  If you want to take the trouble to implement a way to
620 continue processing despite the bad data, then reporting a warning of
621 severity @code{:error} is the right way to inform the user of the
622 problem.  For instance, the Emacs Lisp byte compiler can report an
623 error that way and continue compiling other functions.  (If the
624 program signals a Lisp error and then handles it with
625 @code{condition-case}, the user won't see the error message; it could
626 show the message to the user by reporting it as a warning.)
628 @c FIXME: Why use "(bytecomp)" instead of "'bytecomp" or simply
629 @c "bytecomp" here?  The parens are part of warning-type-format but
630 @c not part of the warning type. --xfq
631 @cindex warning type
632   Each warning has a @dfn{warning type} to classify it.  The type is a
633 list of symbols.  The first symbol should be the custom group that you
634 use for the program's user options.  For example, byte compiler
635 warnings use the warning type @code{(bytecomp)}.  You can also
636 subcategorize the warnings, if you wish, by using more symbols in the
637 list.
639 @defun display-warning type message &optional level buffer-name
640 This function reports a warning, using @var{message} as the message
641 and @var{type} as the warning type.  @var{level} should be the
642 severity level, with @code{:warning} being the default.
644 @var{buffer-name}, if non-@code{nil}, specifies the name of the buffer
645 for logging the warning.  By default, it is @file{*Warnings*}.
646 @end defun
648 @defun lwarn type level message &rest args
649 This function reports a warning using the value of @code{(format
650 @var{message} @var{args}...)} as the message in the @file{*Warnings*}
651 buffer.  In other respects it is equivalent to @code{display-warning}.
652 @end defun
654 @defun warn message &rest args
655 This function reports a warning using the value of @code{(format
656 @var{message} @var{args}...)} as the message, @code{(emacs)} as the
657 type, and @code{:warning} as the severity level.  It exists for
658 compatibility only; we recommend not using it, because you should
659 specify a specific warning type.
660 @end defun
662 @node Warning Variables
663 @subsection Warning Variables
665   Programs can customize how their warnings appear by binding
666 the variables described in this section.
668 @defvar warning-levels
669 This list defines the meaning and severity order of the warning
670 severity levels.  Each element defines one severity level,
671 and they are arranged in order of decreasing severity.
673 Each element has the form @code{(@var{level} @var{string}
674 @var{function})}, where @var{level} is the severity level it defines.
675 @var{string} specifies the textual description of this level.
676 @var{string} should use @samp{%s} to specify where to put the warning
677 type information, or it can omit the @samp{%s} so as not to include
678 that information.
680 The optional @var{function}, if non-@code{nil}, is a function to call
681 with no arguments, to get the user's attention.
683 Normally you should not change the value of this variable.
684 @end defvar
686 @defvar warning-prefix-function
687 If non-@code{nil}, the value is a function to generate prefix text for
688 warnings.  Programs can bind the variable to a suitable function.
689 @code{display-warning} calls this function with the warnings buffer
690 current, and the function can insert text in it.  That text becomes
691 the beginning of the warning message.
693 The function is called with two arguments, the severity level and its
694 entry in @code{warning-levels}.  It should return a list to use as the
695 entry (this value need not be an actual member of
696 @code{warning-levels}).  By constructing this value, the function can
697 change the severity of the warning, or specify different handling for
698 a given severity level.
700 If the variable's value is @code{nil} then there is no function
701 to call.
702 @end defvar
704 @defvar warning-series
705 Programs can bind this variable to @code{t} to say that the next
706 warning should begin a series.  When several warnings form a series,
707 that means to leave point on the first warning of the series, rather
708 than keep moving it for each warning so that it appears on the last one.
709 The series ends when the local binding is unbound and
710 @code{warning-series} becomes @code{nil} again.
712 The value can also be a symbol with a function definition.  That is
713 equivalent to @code{t}, except that the next warning will also call
714 the function with no arguments with the warnings buffer current.  The
715 function can insert text which will serve as a header for the series
716 of warnings.
718 Once a series has begun, the value is a marker which points to the
719 buffer position in the warnings buffer of the start of the series.
721 The variable's normal value is @code{nil}, which means to handle
722 each warning separately.
723 @end defvar
725 @defvar warning-fill-prefix
726 When this variable is non-@code{nil}, it specifies a fill prefix to
727 use for filling each warning's text.
728 @end defvar
730 @defvar warning-type-format
731 This variable specifies the format for displaying the warning type
732 in the warning message.  The result of formatting the type this way
733 gets included in the message under the control of the string in the
734 entry in @code{warning-levels}.  The default value is @code{" (%s)"}.
735 If you bind it to @code{""} then the warning type won't appear at
736 all.
737 @end defvar
739 @node Warning Options
740 @subsection Warning Options
742   These variables are used by users to control what happens
743 when a Lisp program reports a warning.
745 @defopt warning-minimum-level
746 This user option specifies the minimum severity level that should be
747 shown immediately to the user.  The default is @code{:warning}, which
748 means to immediately display all warnings except @code{:debug}
749 warnings.
750 @end defopt
752 @defopt warning-minimum-log-level
753 This user option specifies the minimum severity level that should be
754 logged in the warnings buffer.  The default is @code{:warning}, which
755 means to log all warnings except @code{:debug} warnings.
756 @end defopt
758 @defopt warning-suppress-types
759 This list specifies which warning types should not be displayed
760 immediately for the user.  Each element of the list should be a list
761 of symbols.  If its elements match the first elements in a warning
762 type, then that warning is not displayed immediately.
763 @end defopt
765 @defopt warning-suppress-log-types
766 This list specifies which warning types should not be logged in the
767 warnings buffer.  Each element of the list should be a list of
768 symbols.  If it matches the first few elements in a warning type, then
769 that warning is not logged.
770 @end defopt
772 @node Delayed Warnings
773 @subsection Delayed Warnings
775 Sometimes, you may wish to avoid showing a warning while a command is
776 running, and only show it only after the end of the command.  You can
777 use the variable @code{delayed-warnings-list} for this.
779 @defvar delayed-warnings-list
780 The value of this variable is a list of warnings to be displayed after
781 the current command has finished.  Each element must be a list
783 @smallexample
784 (@var{type} @var{message} [@var{level} [@var{buffer-name}]])
785 @end smallexample
787 @noindent
788 with the same form, and the same meanings, as the argument list of
789 @code{display-warning} (@pxref{Warning Basics}).  Immediately after
790 running @code{post-command-hook} (@pxref{Command Overview}), the Emacs
791 command loop displays all the warnings specified by this variable,
792 then resets it to @code{nil}.
793 @end defvar
795   Programs which need to further customize the delayed warnings
796 mechanism can change the variable @code{delayed-warnings-hook}:
798 @defvar delayed-warnings-hook
799 This is a normal hook which is run by the Emacs command loop, after
800 @code{post-command-hook}, in order to to process and display delayed
801 warnings.
803 Its default value is a list of two functions:
805 @smallexample
806 (collapse-delayed-warnings display-delayed-warnings)
807 @end smallexample
809 @findex collapse-delayed-warnings
810 @findex display-delayed-warnings
811 @noindent
812 The function @code{collapse-delayed-warnings} removes repeated entries
813 from @code{delayed-warnings-list}.  The function
814 @code{display-delayed-warnings} calls @code{display-warning} on each
815 of the entries in @code{delayed-warnings-list}, in turn, and then sets
816 @code{delayed-warnings-list} to @code{nil}.
817 @end defvar
819 @node Invisible Text
820 @section Invisible Text
822 @cindex invisible text
823 You can make characters @dfn{invisible}, so that they do not appear on
824 the screen, with the @code{invisible} property.  This can be either a
825 text property (@pxref{Text Properties}) or an overlay property
826 (@pxref{Overlays}).  Cursor motion also partly ignores these
827 characters; if the command loop finds that point is inside a range of
828 invisible text after a command, it relocates point to the other side
829 of the text.
831 In the simplest case, any non-@code{nil} @code{invisible} property makes
832 a character invisible.  This is the default case---if you don't alter
833 the default value of @code{buffer-invisibility-spec}, this is how the
834 @code{invisible} property works.  You should normally use @code{t}
835 as the value of the @code{invisible} property if you don't plan
836 to set @code{buffer-invisibility-spec} yourself.
838 More generally, you can use the variable @code{buffer-invisibility-spec}
839 to control which values of the @code{invisible} property make text
840 invisible.  This permits you to classify the text into different subsets
841 in advance, by giving them different @code{invisible} values, and
842 subsequently make various subsets visible or invisible by changing the
843 value of @code{buffer-invisibility-spec}.
845 Controlling visibility with @code{buffer-invisibility-spec} is
846 especially useful in a program to display the list of entries in a
847 database.  It permits the implementation of convenient filtering
848 commands to view just a part of the entries in the database.  Setting
849 this variable is very fast, much faster than scanning all the text in
850 the buffer looking for properties to change.
852 @defvar buffer-invisibility-spec
853 This variable specifies which kinds of @code{invisible} properties
854 actually make a character invisible.  Setting this variable makes it
855 buffer-local.
857 @table @asis
858 @item @code{t}
859 A character is invisible if its @code{invisible} property is
860 non-@code{nil}.  This is the default.
862 @item a list
863 Each element of the list specifies a criterion for invisibility; if a
864 character's @code{invisible} property fits any one of these criteria,
865 the character is invisible.  The list can have two kinds of elements:
867 @table @code
868 @item @var{atom}
869 A character is invisible if its @code{invisible} property value is
870 @var{atom} or if it is a list with @var{atom} as a member; comparison
871 is done with @code{eq}.
873 @item (@var{atom} . t)
874 A character is invisible if its @code{invisible} property value is
875 @var{atom} or if it is a list with @var{atom} as a member; comparison
876 is done with @code{eq}.  Moreover, a sequence of such characters
877 displays as an ellipsis.
878 @end table
879 @end table
880 @end defvar
882   Two functions are specifically provided for adding elements to
883 @code{buffer-invisibility-spec} and removing elements from it.
885 @defun add-to-invisibility-spec element
886 This function adds the element @var{element} to
887 @code{buffer-invisibility-spec}.  If @code{buffer-invisibility-spec}
888 was @code{t}, it changes to a list, @code{(t)}, so that text whose
889 @code{invisible} property is @code{t} remains invisible.
890 @end defun
892 @defun remove-from-invisibility-spec element
893 This removes the element @var{element} from
894 @code{buffer-invisibility-spec}.  This does nothing if @var{element}
895 is not in the list.
896 @end defun
898   A convention for use of @code{buffer-invisibility-spec} is that a
899 major mode should use the mode's own name as an element of
900 @code{buffer-invisibility-spec} and as the value of the
901 @code{invisible} property:
903 @example
904 ;; @r{If you want to display an ellipsis:}
905 (add-to-invisibility-spec '(my-symbol . t))
906 ;; @r{If you don't want ellipsis:}
907 (add-to-invisibility-spec 'my-symbol)
909 (overlay-put (make-overlay beginning end)
910              'invisible 'my-symbol)
912 ;; @r{When done with the invisibility:}
913 (remove-from-invisibility-spec '(my-symbol . t))
914 ;; @r{Or respectively:}
915 (remove-from-invisibility-spec 'my-symbol)
916 @end example
918   You can check for invisibility using the following function:
920 @defun invisible-p pos-or-prop
921 If @var{pos-or-prop} is a marker or number, this function returns a
922 non-@code{nil} value if the text at that position is invisible.
924 If @var{pos-or-prop} is any other kind of Lisp object, that is taken
925 to mean a possible value of the @code{invisible} text or overlay
926 property.  In that case, this function returns a non-@code{nil} value
927 if that value would cause text to become invisible, based on the
928 current value of @code{buffer-invisibility-spec}.
929 @end defun
931 @vindex line-move-ignore-invisible
932   Ordinarily, functions that operate on text or move point do not care
933 whether the text is invisible, they process invisible characters and
934 visible characters alike.  The user-level line motion commands,
935 such as @code{next-line}, @code{previous-line}, ignore invisible
936 newlines if @code{line-move-ignore-invisible} is non-@code{nil} (the
937 default), i.e., behave like these invisible newlines didn't exist in
938 the buffer, but only because they are explicitly programmed to do so.
940   If a command ends with point inside or at the boundary of
941 invisible text, the main editing loop relocates point to one of the
942 two ends of the invisible text.  Emacs chooses the direction of
943 relocation so that it is the same as the overall movement direction of
944 the command; if in doubt, it prefers a position where an inserted char
945 would not inherit the @code{invisible} property.  Additionally, if the
946 text is not replaced by an ellipsis and the command only moved within
947 the invisible text, then point is moved one extra character so as to
948 try and reflect the command's movement by a visible movement of the
949 cursor.
951   Thus, if the command moved point back to an invisible range (with the usual
952 stickiness), Emacs moves point back to the beginning of that range.  If the
953 command moved point forward into an invisible range, Emacs moves point forward
954 to the first visible character that follows the invisible text and then forward
955 one more character.
957   These @dfn{adjustments} of point that ended up in the middle of
958 invisible text can be disabled by setting @code{disable-point-adjustment}
959 to a non-@code{nil} value.  @xref{Adjusting Point}.
961   Incremental search can make invisible overlays visible temporarily
962 and/or permanently when a match includes invisible text.  To enable
963 this, the overlay should have a non-@code{nil}
964 @code{isearch-open-invisible} property.  The property value should be a
965 function to be called with the overlay as an argument.  This function
966 should make the overlay visible permanently; it is used when the match
967 overlaps the overlay on exit from the search.
969   During the search, such overlays are made temporarily visible by
970 temporarily modifying their invisible and intangible properties.  If you
971 want this to be done differently for a certain overlay, give it an
972 @code{isearch-open-invisible-temporary} property which is a function.
973 The function is called with two arguments: the first is the overlay, and
974 the second is @code{nil} to make the overlay visible, or @code{t} to
975 make it invisible again.
977 @node Selective Display
978 @section Selective Display
979 @c @cindex selective display   Duplicates selective-display
981   @dfn{Selective display} refers to a pair of related features for
982 hiding certain lines on the screen.
984 @cindex explicit selective display
985   The first variant, explicit selective display, was designed for use in a Lisp
986 program: it controls which lines are hidden by altering the text.  This kind of
987 hiding is now obsolete; instead you can get the same effect with the
988 @code{invisible} property (@pxref{Invisible Text}).
990   In the second variant, the choice of lines to hide is made
991 automatically based on indentation.  This variant is designed to be a
992 user-level feature.
994   The way you control explicit selective display is by replacing a
995 newline (control-j) with a carriage return (control-m).  The text that
996 was formerly a line following that newline is now hidden.  Strictly
997 speaking, it is temporarily no longer a line at all, since only
998 newlines can separate lines; it is now part of the previous line.
1000   Selective display does not directly affect editing commands.  For
1001 example, @kbd{C-f} (@code{forward-char}) moves point unhesitatingly
1002 into hidden text.  However, the replacement of newline characters with
1003 carriage return characters affects some editing commands.  For
1004 example, @code{next-line} skips hidden lines, since it searches only
1005 for newlines.  Modes that use selective display can also define
1006 commands that take account of the newlines, or that control which
1007 parts of the text are hidden.
1009   When you write a selectively displayed buffer into a file, all the
1010 control-m's are output as newlines.  This means that when you next read
1011 in the file, it looks OK, with nothing hidden.  The selective display
1012 effect is seen only within Emacs.
1014 @defvar selective-display
1015 This buffer-local variable enables selective display.  This means that
1016 lines, or portions of lines, may be made hidden.
1018 @itemize @bullet
1019 @item
1020 If the value of @code{selective-display} is @code{t}, then the character
1021 control-m marks the start of hidden text; the control-m, and the rest
1022 of the line following it, are not displayed.  This is explicit selective
1023 display.
1025 @item
1026 If the value of @code{selective-display} is a positive integer, then
1027 lines that start with more than that many columns of indentation are not
1028 displayed.
1029 @end itemize
1031 When some portion of a buffer is hidden, the vertical movement
1032 commands operate as if that portion did not exist, allowing a single
1033 @code{next-line} command to skip any number of hidden lines.
1034 However, character movement commands (such as @code{forward-char}) do
1035 not skip the hidden portion, and it is possible (if tricky) to insert
1036 or delete text in an hidden portion.
1038 In the examples below, we show the @emph{display appearance} of the
1039 buffer @code{foo}, which changes with the value of
1040 @code{selective-display}.  The @emph{contents} of the buffer do not
1041 change.
1043 @example
1044 @group
1045 (setq selective-display nil)
1046      @result{} nil
1048 ---------- Buffer: foo ----------
1049 1 on this column
1050  2on this column
1051   3n this column
1052   3n this column
1053  2on this column
1054 1 on this column
1055 ---------- Buffer: foo ----------
1056 @end group
1058 @group
1059 (setq selective-display 2)
1060      @result{} 2
1062 ---------- Buffer: foo ----------
1063 1 on this column
1064  2on this column
1065  2on this column
1066 1 on this column
1067 ---------- Buffer: foo ----------
1068 @end group
1069 @end example
1070 @end defvar
1072 @defopt selective-display-ellipses
1073 If this buffer-local variable is non-@code{nil}, then Emacs displays
1074 @samp{@dots{}} at the end of a line that is followed by hidden text.
1075 This example is a continuation of the previous one.
1077 @example
1078 @group
1079 (setq selective-display-ellipses t)
1080      @result{} t
1082 ---------- Buffer: foo ----------
1083 1 on this column
1084  2on this column ...
1085  2on this column
1086 1 on this column
1087 ---------- Buffer: foo ----------
1088 @end group
1089 @end example
1091 You can use a display table to substitute other text for the ellipsis
1092 (@samp{@dots{}}).  @xref{Display Tables}.
1093 @end defopt
1095 @node Temporary Displays
1096 @section Temporary Displays
1098   Temporary displays are used by Lisp programs to put output into a
1099 buffer and then present it to the user for perusal rather than for
1100 editing.  Many help commands use this feature.
1102 @defmac with-output-to-temp-buffer buffer-name body@dots{}
1103 This function executes the forms in @var{body} while arranging to insert
1104 any output they print into the buffer named @var{buffer-name}, which is
1105 first created if necessary, and put into Help mode.  (See the similar
1106 form @code{with-temp-buffer-window} below.)  Finally, the buffer is
1107 displayed in some window, but that window is not selected.
1109 If the forms in @var{body} do not change the major mode in the output
1110 buffer, so that it is still Help mode at the end of their execution,
1111 then @code{with-output-to-temp-buffer} makes this buffer read-only at
1112 the end, and also scans it for function and variable names to make them
1113 into clickable cross-references.  @xref{Docstring hyperlinks, , Tips for
1114 Documentation Strings}, in particular the item on hyperlinks in
1115 documentation strings, for more details.
1117 The string @var{buffer-name} specifies the temporary buffer, which need
1118 not already exist.  The argument must be a string, not a buffer.  The
1119 buffer is erased initially (with no questions asked), and it is marked
1120 as unmodified after @code{with-output-to-temp-buffer} exits.
1122 @code{with-output-to-temp-buffer} binds @code{standard-output} to the
1123 temporary buffer, then it evaluates the forms in @var{body}.  Output
1124 using the Lisp output functions within @var{body} goes by default to
1125 that buffer (but screen display and messages in the echo area, although
1126 they are ``output'' in the general sense of the word, are not affected).
1127 @xref{Output Functions}.
1129 Several hooks are available for customizing the behavior
1130 of this construct; they are listed below.
1132 The value of the last form in @var{body} is returned.
1134 @example
1135 @group
1136 ---------- Buffer: foo ----------
1137  This is the contents of foo.
1138 ---------- Buffer: foo ----------
1139 @end group
1141 @group
1142 (with-output-to-temp-buffer "foo"
1143     (print 20)
1144     (print standard-output))
1145 @result{} #<buffer foo>
1147 ---------- Buffer: foo ----------
1151 #<buffer foo>
1153 ---------- Buffer: foo ----------
1154 @end group
1155 @end example
1156 @end defmac
1158 @defopt temp-buffer-show-function
1159 If this variable is non-@code{nil}, @code{with-output-to-temp-buffer}
1160 calls it as a function to do the job of displaying a help buffer.  The
1161 function gets one argument, which is the buffer it should display.
1163 It is a good idea for this function to run @code{temp-buffer-show-hook}
1164 just as @code{with-output-to-temp-buffer} normally would, inside of
1165 @code{save-selected-window} and with the chosen window and buffer
1166 selected.
1167 @end defopt
1169 @defvar temp-buffer-setup-hook
1170 This normal hook is run by @code{with-output-to-temp-buffer} before
1171 evaluating @var{body}.  When the hook runs, the temporary buffer is
1172 current.  This hook is normally set up with a function to put the
1173 buffer in Help mode.
1174 @end defvar
1176 @defvar temp-buffer-show-hook
1177 This normal hook is run by @code{with-output-to-temp-buffer} after
1178 displaying the temporary buffer.  When the hook runs, the temporary buffer
1179 is current, and the window it was displayed in is selected.
1180 @end defvar
1182 @defmac with-temp-buffer-window buffer-or-name action quit-function body@dots{}
1183 This macro is similar to @code{with-output-to-temp-buffer}.  Like that
1184 construct, it executes @var{body} while arranging to insert any output
1185 it prints into the buffer named @var{buffer-or-name} and displays that
1186 buffer in some window.  Unlike @code{with-output-to-temp-buffer},
1187 however, it does not automatically switch that buffer to Help mode.
1189 Like @code{with-output-to-temp-buffer} it neither makes the buffer
1190 specified by @var{buffer-or-name} current when executing @var{body}.
1191 @findex with-current-buffer-window
1192 The otherwise identical macro @code{with-current-buffer-window} can be
1193 used to execute @var{body} with that buffer current.
1195 The argument @var{buffer-or-name} specifies the temporary buffer.  It
1196 can be either a buffer, which must already exist, or a string, in which
1197 case a buffer of that name is created, if necessary.  The buffer is
1198 marked as unmodified and read-only when @code{with-temp-buffer-window}
1199 exits.
1201 This macro does not call @code{temp-buffer-show-function}.  Rather, it
1202 passes the @var{action} argument to @code{display-buffer} in order to
1203 display the buffer.
1205 The value of the last form in @var{body} is returned, unless the
1206 argument @var{quit-function} is specified.  In that case, it is called
1207 with two arguments: the window showing the buffer and the result of
1208 @var{body}.  The final return value is then whatever
1209 @var{quit-function} returns.
1211 @vindex temp-buffer-window-setup-hook
1212 @vindex temp-buffer-window-show-hook
1213 This macro uses the normal hooks @code{temp-buffer-window-setup-hook}
1214 and @code{temp-buffer-window-show-hook} in place of the analogous hooks
1215 run by @code{with-output-to-temp-buffer}.
1216 @end defmac
1218 @defun momentary-string-display string position &optional char message
1219 This function momentarily displays @var{string} in the current buffer at
1220 @var{position}.  It has no effect on the undo list or on the buffer's
1221 modification status.
1223 The momentary display remains until the next input event.  If the next
1224 input event is @var{char}, @code{momentary-string-display} ignores it
1225 and returns.  Otherwise, that event remains buffered for subsequent use
1226 as input.  Thus, typing @var{char} will simply remove the string from
1227 the display, while typing (say) @kbd{C-f} will remove the string from
1228 the display and later (presumably) move point forward.  The argument
1229 @var{char} is a space by default.
1231 The return value of @code{momentary-string-display} is not meaningful.
1233 If the string @var{string} does not contain control characters, you can
1234 do the same job in a more general way by creating (and then subsequently
1235 deleting) an overlay with a @code{before-string} property.
1236 @xref{Overlay Properties}.
1238 If @var{message} is non-@code{nil}, it is displayed in the echo area
1239 while @var{string} is displayed in the buffer.  If it is @code{nil}, a
1240 default message says to type @var{char} to continue.
1242 In this example, point is initially located at the beginning of the
1243 second line:
1245 @example
1246 @group
1247 ---------- Buffer: foo ----------
1248 This is the contents of foo.
1249 @point{}Second line.
1250 ---------- Buffer: foo ----------
1251 @end group
1253 @group
1254 (momentary-string-display
1255   "**** Important Message! ****"
1256   (point) ?\r
1257   "Type RET when done reading")
1258 @result{} t
1259 @end group
1261 @group
1262 ---------- Buffer: foo ----------
1263 This is the contents of foo.
1264 **** Important Message! ****Second line.
1265 ---------- Buffer: foo ----------
1267 ---------- Echo Area ----------
1268 Type RET when done reading
1269 ---------- Echo Area ----------
1270 @end group
1271 @end example
1272 @end defun
1274 @node Overlays
1275 @section Overlays
1276 @cindex overlays
1277 @c FIXME: mention intervals in this section?
1279 You can use @dfn{overlays} to alter the appearance of a buffer's text on
1280 the screen, for the sake of presentation features.  An overlay is an
1281 object that belongs to a particular buffer, and has a specified
1282 beginning and end.  It also has properties that you can examine and set;
1283 these affect the display of the text within the overlay.
1285 @cindex scalability of overlays
1286 The visual effect of an overlay is the same as of the corresponding
1287 text property (@pxref{Text Properties}).  However, due to a different
1288 implementation, overlays generally don't scale well (many operations
1289 take a time that is proportional to the number of overlays in the
1290 buffer).  If you need to affect the visual appearance of many portions
1291 in the buffer, we recommend using text properties.
1293 An overlay uses markers to record its beginning and end; thus,
1294 editing the text of the buffer adjusts the beginning and end of each
1295 overlay so that it stays with the text.  When you create the overlay,
1296 you can specify whether text inserted at the beginning should be
1297 inside the overlay or outside, and likewise for the end of the overlay.
1299 @menu
1300 * Managing Overlays::   Creating and moving overlays.
1301 * Overlay Properties::  How to read and set properties.
1302                           What properties do to the screen display.
1303 * Finding Overlays::    Searching for overlays.
1304 @end menu
1306 @node Managing Overlays
1307 @subsection Managing Overlays
1309   This section describes the functions to create, delete and move
1310 overlays, and to examine their contents.  Overlay changes are not
1311 recorded in the buffer's undo list, since the overlays are not
1312 part of the buffer's contents.
1314 @defun overlayp object
1315 This function returns @code{t} if @var{object} is an overlay.
1316 @end defun
1318 @defun make-overlay start end &optional buffer front-advance rear-advance
1319 This function creates and returns an overlay that belongs to
1320 @var{buffer} and ranges from @var{start} to @var{end}.  Both @var{start}
1321 and @var{end} must specify buffer positions; they may be integers or
1322 markers.  If @var{buffer} is omitted, the overlay is created in the
1323 current buffer.
1325 The arguments @var{front-advance} and @var{rear-advance} specify the
1326 marker insertion type for the start of the overlay and for the end of
1327 the overlay, respectively.  @xref{Marker Insertion Types}.  If they
1328 are both @code{nil}, the default, then the overlay extends to include
1329 any text inserted at the beginning, but not text inserted at the end.
1330 If @var{front-advance} is non-@code{nil}, text inserted at the
1331 beginning of the overlay is excluded from the overlay.  If
1332 @var{rear-advance} is non-@code{nil}, text inserted at the end of the
1333 overlay is included in the overlay.
1334 @end defun
1336 @defun overlay-start overlay
1337 This function returns the position at which @var{overlay} starts,
1338 as an integer.
1339 @end defun
1341 @defun overlay-end overlay
1342 This function returns the position at which @var{overlay} ends,
1343 as an integer.
1344 @end defun
1346 @defun overlay-buffer overlay
1347 This function returns the buffer that @var{overlay} belongs to.  It
1348 returns @code{nil} if @var{overlay} has been deleted.
1349 @end defun
1351 @defun delete-overlay overlay
1352 This function deletes @var{overlay}.  The overlay continues to exist as
1353 a Lisp object, and its property list is unchanged, but it ceases to be
1354 attached to the buffer it belonged to, and ceases to have any effect on
1355 display.
1357 A deleted overlay is not permanently disconnected.  You can give it a
1358 position in a buffer again by calling @code{move-overlay}.
1359 @end defun
1361 @defun move-overlay overlay start end &optional buffer
1362 This function moves @var{overlay} to @var{buffer}, and places its bounds
1363 at @var{start} and @var{end}.  Both arguments @var{start} and @var{end}
1364 must specify buffer positions; they may be integers or markers.
1366 If @var{buffer} is omitted, @var{overlay} stays in the same buffer it
1367 was already associated with; if @var{overlay} was deleted, it goes into
1368 the current buffer.
1370 The return value is @var{overlay}.
1372 This is the only valid way to change the endpoints of an overlay.  Do
1373 not try modifying the markers in the overlay by hand, as that fails to
1374 update other vital data structures and can cause some overlays to be
1375 ``lost''.
1376 @end defun
1378 @defun remove-overlays &optional start end name value
1379 This function removes all the overlays between @var{start} and
1380 @var{end} whose property @var{name} has the value @var{value}.  It can
1381 move the endpoints of the overlays in the region, or split them.
1383 If @var{name} is omitted or @code{nil}, it means to delete all overlays in
1384 the specified region.  If @var{start} and/or @var{end} are omitted or
1385 @code{nil}, that means the beginning and end of the buffer respectively.
1386 Therefore, @code{(remove-overlays)} removes all the overlays in the
1387 current buffer.
1388 @end defun
1390 @defun copy-overlay overlay
1391 This function returns a copy of @var{overlay}.  The copy has the same
1392 endpoints and properties as @var{overlay}.  However, the marker
1393 insertion type for the start of the overlay and for the end of the
1394 overlay are set to their default values (@pxref{Marker Insertion
1395 Types}).
1396 @end defun
1398   Here are some examples:
1400 @example
1401 ;; @r{Create an overlay.}
1402 (setq foo (make-overlay 1 10))
1403      @result{} #<overlay from 1 to 10 in display.texi>
1404 (overlay-start foo)
1405      @result{} 1
1406 (overlay-end foo)
1407      @result{} 10
1408 (overlay-buffer foo)
1409      @result{} #<buffer display.texi>
1410 ;; @r{Give it a property we can check later.}
1411 (overlay-put foo 'happy t)
1412      @result{} t
1413 ;; @r{Verify the property is present.}
1414 (overlay-get foo 'happy)
1415      @result{} t
1416 ;; @r{Move the overlay.}
1417 (move-overlay foo 5 20)
1418      @result{} #<overlay from 5 to 20 in display.texi>
1419 (overlay-start foo)
1420      @result{} 5
1421 (overlay-end foo)
1422      @result{} 20
1423 ;; @r{Delete the overlay.}
1424 (delete-overlay foo)
1425      @result{} nil
1426 ;; @r{Verify it is deleted.}
1428      @result{} #<overlay in no buffer>
1429 ;; @r{A deleted overlay has no position.}
1430 (overlay-start foo)
1431      @result{} nil
1432 (overlay-end foo)
1433      @result{} nil
1434 (overlay-buffer foo)
1435      @result{} nil
1436 ;; @r{Undelete the overlay.}
1437 (move-overlay foo 1 20)
1438      @result{} #<overlay from 1 to 20 in display.texi>
1439 ;; @r{Verify the results.}
1440 (overlay-start foo)
1441      @result{} 1
1442 (overlay-end foo)
1443      @result{} 20
1444 (overlay-buffer foo)
1445      @result{} #<buffer display.texi>
1446 ;; @r{Moving and deleting the overlay does not change its properties.}
1447 (overlay-get foo 'happy)
1448      @result{} t
1449 @end example
1451   Emacs stores the overlays of each buffer in two lists, divided
1452 around an arbitrary ``center position''.  One list extends backwards
1453 through the buffer from that center position, and the other extends
1454 forwards from that center position.  The center position can be anywhere
1455 in the buffer.
1457 @defun overlay-recenter pos
1458 This function recenters the overlays of the current buffer around
1459 position @var{pos}.  That makes overlay lookup faster for positions
1460 near @var{pos}, but slower for positions far away from @var{pos}.
1461 @end defun
1463   A loop that scans the buffer forwards, creating overlays, can run
1464 faster if you do @code{(overlay-recenter (point-max))} first.
1466 @node Overlay Properties
1467 @subsection Overlay Properties
1469   Overlay properties are like text properties in that the properties that
1470 alter how a character is displayed can come from either source.  But in
1471 most respects they are different.  @xref{Text Properties}, for comparison.
1473   Text properties are considered a part of the text; overlays and
1474 their properties are specifically considered not to be part of the
1475 text.  Thus, copying text between various buffers and strings
1476 preserves text properties, but does not try to preserve overlays.
1477 Changing a buffer's text properties marks the buffer as modified,
1478 while moving an overlay or changing its properties does not.  Unlike
1479 text property changes, overlay property changes are not recorded in
1480 the buffer's undo list.
1482   Since more than one overlay can specify a property value for the
1483 same character, Emacs lets you specify a priority value of each
1484 overlay.  In case two overlays have the same priority value, and one
1485 is nested in the other, then the inner one will have priority over the
1486 outer one.  If neither is nested in the other then you should not make
1487 assumptions about which overlay will prevail.
1489   These functions read and set the properties of an overlay:
1491 @defun overlay-get overlay prop
1492 This function returns the value of property @var{prop} recorded in
1493 @var{overlay}, if any.  If @var{overlay} does not record any value for
1494 that property, but it does have a @code{category} property which is a
1495 symbol, that symbol's @var{prop} property is used.  Otherwise, the value
1496 is @code{nil}.
1497 @end defun
1499 @defun overlay-put overlay prop value
1500 This function sets the value of property @var{prop} recorded in
1501 @var{overlay} to @var{value}.  It returns @var{value}.
1502 @end defun
1504 @defun overlay-properties overlay
1505 This returns a copy of the property list of @var{overlay}.
1506 @end defun
1508   See also the function @code{get-char-property} which checks both
1509 overlay properties and text properties for a given character.
1510 @xref{Examining Properties}.
1512   Many overlay properties have special meanings; here is a table
1513 of them:
1515 @table @code
1516 @item priority
1517 @kindex priority @r{(overlay property)}
1518 This property's value determines the priority of the overlay.
1519 If you want to specify a priority value, use either @code{nil}
1520 (or zero), or a positive integer.  Any other value has undefined behavior.
1522 The priority matters when two or more overlays cover the same
1523 character and both specify the same property; the one whose
1524 @code{priority} value is larger overrides the other.  For the
1525 @code{face} property, the higher priority overlay's value does not
1526 completely override the other value; instead, its face attributes
1527 override the face attributes of the lower priority @code{face}
1528 property.
1530 Currently, all overlays take priority over text properties.
1532 Note that Emacs sometimes uses non-numeric priority values for some of
1533 its internal overlays, so do not try to do arithmetic on the
1534 priority of an overlay (unless it is one that you created).  If you
1535 need to put overlays in priority order, use the @var{sorted} argument
1536 of @code{overlays-at}.  @xref{Finding Overlays}.
1538 @item window
1539 @kindex window @r{(overlay property)}
1540 If the @code{window} property is non-@code{nil}, then the overlay
1541 applies only on that window.
1543 @item category
1544 @kindex category @r{(overlay property)}
1545 If an overlay has a @code{category} property, we call it the
1546 @dfn{category} of the overlay.  It should be a symbol.  The properties
1547 of the symbol serve as defaults for the properties of the overlay.
1549 @item face
1550 @kindex face @r{(overlay property)}
1551 This property controls the appearance of the text (@pxref{Faces}).
1552 The value of the property can be the following:
1554 @itemize @bullet
1555 @item
1556 A face name (a symbol or string).
1558 @item
1559 An anonymous face: a property list of the form @code{(@var{keyword}
1560 @var{value} @dots{})}, where each @var{keyword} is a face attribute
1561 name and @var{value} is a value for that attribute.
1563 @item
1564 A list of faces.  Each list element should be either a face name or an
1565 anonymous face.  This specifies a face which is an aggregate of the
1566 attributes of each of the listed faces.  Faces occurring earlier in
1567 the list have higher priority.
1569 @item
1570 A cons cell of the form @code{(foreground-color . @var{color-name})}
1571 or @code{(background-color . @var{color-name})}.  This specifies the
1572 foreground or background color, similar to @code{(:foreground
1573 @var{color-name})} or @code{(:background @var{color-name})}.  This
1574 form is supported for backward compatibility only, and should be
1575 avoided.
1576 @end itemize
1578 @item mouse-face
1579 @kindex mouse-face @r{(overlay property)}
1580 This property is used instead of @code{face} when the mouse is within
1581 the range of the overlay.  However, Emacs ignores all face attributes
1582 from this property that alter the text size (e.g., @code{:height},
1583 @code{:weight}, and @code{:slant}).  Those attributes are always the
1584 same as in the unhighlighted text.
1586 @item display
1587 @kindex display @r{(overlay property)}
1588 This property activates various features that change the
1589 way text is displayed.  For example, it can make text appear taller
1590 or shorter, higher or lower, wider or narrower, or replaced with an image.
1591 @xref{Display Property}.
1593 @item help-echo
1594 @kindex help-echo @r{(overlay property)}
1595 If an overlay has a @code{help-echo} property, then when you move the
1596 mouse onto the text in the overlay, Emacs displays a help string in the
1597 echo area, or in the tooltip window.  For details see @ref{Text
1598 help-echo}.
1600 @item field
1601 @kindex field @r{(overlay property)}
1602 @c Copied from Special Properties.
1603 Consecutive characters with the same @code{field} property constitute a
1604 @emph{field}.  Some motion functions including @code{forward-word} and
1605 @code{beginning-of-line} stop moving at a field boundary.
1606 @xref{Fields}.
1608 @item modification-hooks
1609 @kindex modification-hooks @r{(overlay property)}
1610 This property's value is a list of functions to be called if any
1611 character within the overlay is changed or if text is inserted strictly
1612 within the overlay.
1614 The hook functions are called both before and after each change.
1615 If the functions save the information they receive, and compare notes
1616 between calls, they can determine exactly what change has been made
1617 in the buffer text.
1619 When called before a change, each function receives four arguments: the
1620 overlay, @code{nil}, and the beginning and end of the text range to be
1621 modified.
1623 When called after a change, each function receives five arguments: the
1624 overlay, @code{t}, the beginning and end of the text range just
1625 modified, and the length of the pre-change text replaced by that range.
1626 (For an insertion, the pre-change length is zero; for a deletion, that
1627 length is the number of characters deleted, and the post-change
1628 beginning and end are equal.)
1630 If these functions modify the buffer, they should bind
1631 @code{inhibit-modification-hooks} to @code{t} around doing so, to
1632 avoid confusing the internal mechanism that calls these hooks.
1634 Text properties also support the @code{modification-hooks} property,
1635 but the details are somewhat different (@pxref{Special Properties}).
1637 @item insert-in-front-hooks
1638 @kindex insert-in-front-hooks @r{(overlay property)}
1639 This property's value is a list of functions to be called before and
1640 after inserting text right at the beginning of the overlay.  The calling
1641 conventions are the same as for the @code{modification-hooks} functions.
1643 @item insert-behind-hooks
1644 @kindex insert-behind-hooks @r{(overlay property)}
1645 This property's value is a list of functions to be called before and
1646 after inserting text right at the end of the overlay.  The calling
1647 conventions are the same as for the @code{modification-hooks} functions.
1649 @item invisible
1650 @kindex invisible @r{(overlay property)}
1651 The @code{invisible} property can make the text in the overlay
1652 invisible, which means that it does not appear on the screen.
1653 @xref{Invisible Text}, for details.
1655 @item intangible
1656 @kindex intangible @r{(overlay property)}
1657 The @code{intangible} property on an overlay works just like the
1658 @code{intangible} text property.  @xref{Special Properties}, for details.
1660 @item isearch-open-invisible
1661 This property tells incremental search how to make an invisible overlay
1662 visible, permanently, if the final match overlaps it.  @xref{Invisible
1663 Text}.
1665 @item isearch-open-invisible-temporary
1666 This property tells incremental search how to make an invisible overlay
1667 visible, temporarily, during the search.  @xref{Invisible Text}.
1669 @item before-string
1670 @kindex before-string @r{(overlay property)}
1671 This property's value is a string to add to the display at the beginning
1672 of the overlay.  The string does not appear in the buffer in any
1673 sense---only on the screen.
1675 @item after-string
1676 @kindex after-string @r{(overlay property)}
1677 This property's value is a string to add to the display at the end of
1678 the overlay.  The string does not appear in the buffer in any
1679 sense---only on the screen.
1681 @item line-prefix
1682 This property specifies a display spec to prepend to each
1683 non-continuation line at display-time.  @xref{Truncation}.
1685 @item wrap-prefix
1686 This property specifies a display spec to prepend to each continuation
1687 line at display-time.  @xref{Truncation}.
1689 @item evaporate
1690 @kindex evaporate @r{(overlay property)}
1691 If this property is non-@code{nil}, the overlay is deleted automatically
1692 if it becomes empty (i.e., if its length becomes zero).  If you give
1693 an empty overlay a non-@code{nil} @code{evaporate} property, that deletes
1694 it immediately.
1696 @item keymap
1697 @cindex keymap of character (and overlays)
1698 @kindex keymap @r{(overlay property)}
1699 If this property is non-@code{nil}, it specifies a keymap for a portion of the
1700 text.  This keymap is used when the character after point is within the
1701 overlay, and takes precedence over most other keymaps.  @xref{Active Keymaps}.
1703 @item local-map
1704 @kindex local-map @r{(overlay property)}
1705 The @code{local-map} property is similar to @code{keymap} but replaces the
1706 buffer's local map rather than augmenting existing keymaps.  This also means it
1707 has lower precedence than minor mode keymaps.
1708 @end table
1710 The @code{keymap} and @code{local-map} properties do not affect a
1711 string displayed by the @code{before-string}, @code{after-string}, or
1712 @code{display} properties.  This is only relevant for mouse clicks and
1713 other mouse events that fall on the string, since point is never on
1714 the string.  To bind special mouse events for the string, assign it a
1715 @code{keymap} or @code{local-map} text property.  @xref{Special
1716 Properties}.
1718 @node Finding Overlays
1719 @subsection Searching for Overlays
1721 @defun overlays-at pos &optional sorted
1722 This function returns a list of all the overlays that cover the character at
1723 position @var{pos} in the current buffer.  If @var{sorted} is non-@code{nil},
1724 the list is in decreasing order of priority, otherwise it is in no particular
1725 order.  An overlay contains position @var{pos} if it begins at or before
1726 @var{pos}, and ends after @var{pos}.
1728 To illustrate usage, here is a Lisp function that returns a list of the
1729 overlays that specify property @var{prop} for the character at point:
1731 @smallexample
1732 (defun find-overlays-specifying (prop)
1733   (let ((overlays (overlays-at (point)))
1734         found)
1735     (while overlays
1736       (let ((overlay (car overlays)))
1737         (if (overlay-get overlay prop)
1738             (setq found (cons overlay found))))
1739       (setq overlays (cdr overlays)))
1740     found))
1741 @end smallexample
1742 @end defun
1744 @defun overlays-in beg end
1745 This function returns a list of the overlays that overlap the region
1746 @var{beg} through @var{end}.  ``Overlap'' means that at least one
1747 character is contained within the overlay and also contained within the
1748 specified region; however, empty overlays are included in the result if
1749 they are located at @var{beg}, strictly between @var{beg} and @var{end},
1750 or at @var{end} when @var{end} denotes the position at the end of the
1751 buffer.
1752 @end defun
1754 @defun next-overlay-change pos
1755 This function returns the buffer position of the next beginning or end
1756 of an overlay, after @var{pos}.  If there is none, it returns
1757 @code{(point-max)}.
1758 @end defun
1760 @defun previous-overlay-change pos
1761 This function returns the buffer position of the previous beginning or
1762 end of an overlay, before @var{pos}.  If there is none, it returns
1763 @code{(point-min)}.
1764 @end defun
1766   As an example, here's a simplified (and inefficient) version of the
1767 primitive function @code{next-single-char-property-change}
1768 (@pxref{Property Search}).  It searches forward from position
1769 @var{pos} for the next position where the value of a given property
1770 @code{prop}, as obtained from either overlays or text properties,
1771 changes.
1773 @smallexample
1774 (defun next-single-char-property-change (position prop)
1775   (save-excursion
1776     (goto-char position)
1777     (let ((propval (get-char-property (point) prop)))
1778       (while (and (not (eobp))
1779                   (eq (get-char-property (point) prop) propval))
1780         (goto-char (min (next-overlay-change (point))
1781                         (next-single-property-change (point) prop)))))
1782     (point)))
1783 @end smallexample
1785 @node Size of Displayed Text
1786 @section Size of Displayed Text
1788 Since not all characters have the same width, these functions let you
1789 check the width of a character.  @xref{Primitive Indent}, and
1790 @ref{Screen Lines}, for related functions.
1792 @defun char-width char
1793 This function returns the width in columns of the character
1794 @var{char}, if it were displayed in the current buffer (i.e., taking
1795 into account the buffer's display table, if any; @pxref{Display
1796 Tables}).  The width of a tab character is usually @code{tab-width}
1797 (@pxref{Usual Display}).
1798 @end defun
1800 @defun string-width string
1801 This function returns the width in columns of the string @var{string},
1802 if it were displayed in the current buffer and the selected window.
1803 @end defun
1805 @defun truncate-string-to-width string width &optional start-column padding ellipsis
1806 This function returns the part of @var{string} that fits within
1807 @var{width} columns, as a new string.
1809 If @var{string} does not reach @var{width}, then the result ends where
1810 @var{string} ends.  If one multi-column character in @var{string}
1811 extends across the column @var{width}, that character is not included in
1812 the result.  Thus, the result can fall short of @var{width} but cannot
1813 go beyond it.
1815 The optional argument @var{start-column} specifies the starting column.
1816 If this is non-@code{nil}, then the first @var{start-column} columns of
1817 the string are omitted from the value.  If one multi-column character in
1818 @var{string} extends across the column @var{start-column}, that
1819 character is not included.
1821 The optional argument @var{padding}, if non-@code{nil}, is a padding
1822 character added at the beginning and end of the result string, to extend
1823 it to exactly @var{width} columns.  The padding character is used at the
1824 end of the result if it falls short of @var{width}.  It is also used at
1825 the beginning of the result if one multi-column character in
1826 @var{string} extends across the column @var{start-column}.
1828 If @var{ellipsis} is non-@code{nil}, it should be a string which will
1829 replace the end of @var{string} (including any padding) if it extends
1830 beyond @var{width}, unless the display width of @var{string} is equal
1831 to or less than the display width of @var{ellipsis}.  If
1832 @var{ellipsis} is non-@code{nil} and not a string, it stands for
1833 @code{"..."}.
1835 @example
1836 (truncate-string-to-width "\tab\t" 12 4)
1837      @result{} "ab"
1838 (truncate-string-to-width "\tab\t" 12 4 ?\s)
1839      @result{} "    ab  "
1840 @end example
1841 @end defun
1843 The following function returns the size in pixels of text as if it were
1844 displayed in a given window.  This function is used by
1845 @code{fit-window-to-buffer} (@pxref{Resizing Windows}) and
1846 @code{fit-frame-to-buffer} (@pxref{Size and Position}) to make a window
1847 exactly as large as the text it contains.
1849 @defun window-text-pixel-size &optional window from to x-limit y-limit mode-and-header-line
1850 This function returns the size of the text of @var{window}'s buffer in
1851 pixels.  @var{window} must be a live window and defaults to the selected
1852 one.  The return value is a cons of the maximum pixel-width of any text
1853 line and the maximum pixel-height of all text lines.
1855 The optional argument @var{from}, if non-@code{nil}, specifies the first
1856 text position to consider and defaults to the minimum accessible
1857 position of the buffer.  If @var{from} is @code{t}, it uses the minimum
1858 accessible position that is not a newline character.  The optional
1859 argument @var{to}, if non-@code{nil}, specifies the last text position
1860 to consider and defaults to the maximum accessible position of the
1861 buffer.  If @var{to} is @code{t}, it uses the maximum accessible
1862 position that is not a newline character.
1864 The optional argument @var{x-limit}, if non-@code{nil}, specifies the
1865 maximum pixel-width that can be returned.  @var{x-limit} @code{nil} or
1866 omitted, means to use the pixel-width of @var{window}'s body
1867 (@pxref{Window Sizes}); this is useful when the caller does not intend
1868 to change the width of @var{window}.  Otherwise, the caller should
1869 specify here the maximum width @var{window}'s body may assume.  Text
1870 whose x-coordinate is beyond @var{x-limit} is ignored.  Since
1871 calculating the width of long lines can take some time, it's always a
1872 good idea to make this argument as small as needed; in particular, if
1873 the buffer might contain long lines that will be truncated anyway.
1875 The optional argument @var{y-limit}, if non-@code{nil}, specifies the
1876 maximum pixel-height that can be returned.  Text lines whose
1877 y-coordinate is beyond @var{y-limit} are ignored.  Since calculating the
1878 pixel-height of a large buffer can take some time, it makes sense to
1879 specify this argument; in particular, if the caller does not know the
1880 size of the buffer.
1882 The optional argument @var{mode-and-header-line} @code{nil} or omitted
1883 means to not include the height of the mode- or header-line of
1884 @var{window} in the return value.  If it is either the symbol
1885 @code{mode-line} or @code{header-line}, include only the height of that
1886 line, if present, in the return value.  If it is @code{t}, include the
1887 height of both, if present, in the return value.
1888 @end defun
1891 @node Line Height
1892 @section Line Height
1893 @cindex line height
1894 @cindex height of a line
1896   The total height of each display line consists of the height of the
1897 contents of the line, plus optional additional vertical line spacing
1898 above or below the display line.
1900   The height of the line contents is the maximum height of any
1901 character or image on that display line, including the final newline
1902 if there is one.  (A display line that is continued doesn't include a
1903 final newline.)  That is the default line height, if you do nothing to
1904 specify a greater height.  (In the most common case, this equals the
1905 height of the default frame font.)
1907   There are several ways to explicitly specify a larger line height,
1908 either by specifying an absolute height for the display line, or by
1909 specifying vertical space.  However, no matter what you specify, the
1910 actual line height can never be less than the default.
1912 @kindex line-height @r{(text property)}
1913   A newline can have a @code{line-height} text or overlay property
1914 that controls the total height of the display line ending in that
1915 newline.
1917   If the property value is @code{t}, the newline character has no
1918 effect on the displayed height of the line---the visible contents
1919 alone determine the height.  This is useful for tiling small images
1920 (or image slices) without adding blank areas between the images.
1922   If the property value is a list of the form @code{(@var{height}
1923 @var{total})}, that adds extra space @emph{below} the display line.
1924 First Emacs uses @var{height} as a height spec to control extra space
1925 @emph{above} the line; then it adds enough space @emph{below} the line
1926 to bring the total line height up to @var{total}.  In this case, the
1927 other ways to specify the line spacing are ignored.
1929 @cindex height spec
1930   Any other kind of property value is a height spec, which translates
1931 into a number---the specified line height.  There are several ways to
1932 write a height spec; here's how each of them translates into a number:
1934 @table @code
1935 @item @var{integer}
1936 If the height spec is a positive integer, the height value is that integer.
1937 @item @var{float}
1938 If the height spec is a float, @var{float}, the numeric height value
1939 is @var{float} times the frame's default line height.
1940 @item (@var{face} . @var{ratio})
1941 If the height spec is a cons of the format shown, the numeric height
1942 is @var{ratio} times the height of face @var{face}.  @var{ratio} can
1943 be any type of number, or @code{nil} which means a ratio of 1.
1944 If @var{face} is @code{t}, it refers to the current face.
1945 @item (nil . @var{ratio})
1946 If the height spec is a cons of the format shown, the numeric height
1947 is @var{ratio} times the height of the contents of the line.
1948 @end table
1950   Thus, any valid height spec determines the height in pixels, one way
1951 or another.  If the line contents' height is less than that, Emacs
1952 adds extra vertical space above the line to achieve the specified
1953 total height.
1955   If you don't specify the @code{line-height} property, the line's
1956 height consists of the contents' height plus the line spacing.
1957 There are several ways to specify the line spacing for different
1958 parts of Emacs text.
1960   On graphical terminals, you can specify the line spacing for all
1961 lines in a frame, using the @code{line-spacing} frame parameter
1962 (@pxref{Layout Parameters}).  However, if the default value of
1963 @code{line-spacing} is non-@code{nil}, it overrides the
1964 frame's @code{line-spacing} parameter.  An integer specifies the
1965 number of pixels put below lines.  A floating-point number specifies
1966 the spacing relative to the frame's default line height.
1968 @vindex line-spacing
1969   You can specify the line spacing for all lines in a buffer via the
1970 buffer-local @code{line-spacing} variable.  An integer specifies
1971 the number of pixels put below lines.  A floating-point number
1972 specifies the spacing relative to the default frame line height.  This
1973 overrides line spacings specified for the frame.
1975 @kindex line-spacing @r{(text property)}
1976   Finally, a newline can have a @code{line-spacing} text or overlay
1977 property that overrides the default frame line spacing and the buffer
1978 local @code{line-spacing} variable, for the display line ending in
1979 that newline.
1981   One way or another, these mechanisms specify a Lisp value for the
1982 spacing of each line.  The value is a height spec, and it translates
1983 into a Lisp value as described above.  However, in this case the
1984 numeric height value specifies the line spacing, rather than the line
1985 height.
1987   On text terminals, the line spacing cannot be altered.
1989 @node Faces
1990 @section Faces
1991 @cindex faces
1993   A @dfn{face} is a collection of graphical attributes for displaying
1994 text: font, foreground color, background color, optional underlining,
1995 etc.  Faces control how Emacs displays text in buffers, as well as
1996 other parts of the frame such as the mode line.
1998 @cindex anonymous face
1999   One way to represent a face is as a property list of attributes,
2000 like @code{(:foreground "red" :weight bold)}.  Such a list is called
2001 an @dfn{anonymous face}.  For example, you can assign an anonymous
2002 face as the value of the @code{face} text property, and Emacs will
2003 display the underlying text with the specified attributes.
2004 @xref{Special Properties}.
2006 @cindex face name
2007   More commonly, a face is referred to via a @dfn{face name}: a Lisp
2008 symbol associated with a set of face attributes@footnote{For backward
2009 compatibility, you can also use a string to specify a face name; that
2010 is equivalent to a Lisp symbol with the same name.}.  Named faces are
2011 defined using the @code{defface} macro (@pxref{Defining Faces}).
2012 Emacs comes with several standard named faces (@pxref{Basic Faces}).
2014   Many parts of Emacs required named faces, and do not accept
2015 anonymous faces.  These include the functions documented in
2016 @ref{Attribute Functions}, and the variable @code{font-lock-keywords}
2017 (@pxref{Search-based Fontification}).  Unless otherwise stated, we
2018 will use the term @dfn{face} to refer only to named faces.
2020 @defun facep object
2021 This function returns a non-@code{nil} value if @var{object} is a
2022 named face: a Lisp symbol or string which serves as a face name.
2023 Otherwise, it returns @code{nil}.
2024 @end defun
2026 @menu
2027 * Face Attributes::     What is in a face?
2028 * Defining Faces::      How to define a face.
2029 * Attribute Functions::  Functions to examine and set face attributes.
2030 * Displaying Faces::     How Emacs combines the faces specified for a character.
2031 * Face Remapping::      Remapping faces to alternative definitions.
2032 * Face Functions::      How to define and examine faces.
2033 * Auto Faces::          Hook for automatic face assignment.
2034 * Basic Faces::         Faces that are defined by default.
2035 * Font Selection::      Finding the best available font for a face.
2036 * Font Lookup::         Looking up the names of available fonts
2037                           and information about them.
2038 * Fontsets::            A fontset is a collection of fonts
2039                           that handle a range of character sets.
2040 * Low-Level Font::      Lisp representation for character display fonts.
2041 @end menu
2043 @node Face Attributes
2044 @subsection Face Attributes
2045 @cindex face attributes
2047   @dfn{Face attributes} determine the visual appearance of a face.
2048 The following table lists all the face attributes, their possible
2049 values, and their effects.
2051   Apart from the values given below, each face attribute can have the
2052 value @code{unspecified}.  This special value means that the face
2053 doesn't specify that attribute directly.  An @code{unspecified}
2054 attribute tells Emacs to refer instead to a parent face (see the
2055 description @code{:inherit} attribute below); or, failing that, to an
2056 underlying face (@pxref{Displaying Faces}).  The @code{default} face
2057 must specify all attributes.
2059   Some of these attributes are meaningful only on certain kinds of
2060 displays.  If your display cannot handle a certain attribute, the
2061 attribute is ignored.
2063 @table @code
2064 @item :family
2065 Font family or fontset (a string).  @xref{Fonts,,, emacs, The GNU
2066 Emacs Manual}, for more information about font families.  The function
2067 @code{font-family-list} (see below) returns a list of available family
2068 names.  @xref{Fontsets}, for information about fontsets.
2070 @item :foundry
2071 The name of the @dfn{font foundry} for the font family specified by
2072 the @code{:family} attribute (a string).  @xref{Fonts,,, emacs, The
2073 GNU Emacs Manual}.
2075 @item :width
2076 Relative character width.  This should be one of the symbols
2077 @code{ultra-condensed}, @code{extra-condensed}, @code{condensed},
2078 @code{semi-condensed}, @code{normal}, @code{semi-expanded},
2079 @code{expanded}, @code{extra-expanded}, or @code{ultra-expanded}.
2081 @item :height
2082 The height of the font.  In the simplest case, this is an integer in
2083 units of 1/10 point.
2085 The value can also be floating point or a function, which
2086 specifies the height relative to an @dfn{underlying face}
2087 (@pxref{Displaying Faces}).  A floating-point value
2088 specifies the amount by which to scale the height of the
2089 underlying face.  A function value is called
2090 with one argument, the height of the underlying face, and returns the
2091 height of the new face.  If the function is passed an integer
2092 argument, it must return an integer.
2094 The height of the default face must be specified using an integer;
2095 floating point and function values are not allowed.
2097 @item :weight
2098 Font weight---one of the symbols (from densest to faintest)
2099 @code{ultra-bold}, @code{extra-bold}, @code{bold}, @code{semi-bold},
2100 @code{normal}, @code{semi-light}, @code{light}, @code{extra-light}, or
2101 @code{ultra-light}.  On text terminals which support
2102 variable-brightness text, any weight greater than normal is displayed
2103 as extra bright, and any weight less than normal is displayed as
2104 half-bright.
2106 @cindex italic text
2107 @item :slant
2108 Font slant---one of the symbols @code{italic}, @code{oblique},
2109 @code{normal}, @code{reverse-italic}, or @code{reverse-oblique}.  On
2110 text terminals that support variable-brightness text, slanted text is
2111 displayed as half-bright.
2113 @item :foreground
2114 Foreground color, a string.  The value can be a system-defined color
2115 name, or a hexadecimal color specification.  @xref{Color Names}.  On
2116 black-and-white displays, certain shades of gray are implemented by
2117 stipple patterns.
2119 @item :distant-foreground
2120 Alternative foreground color, a string.  This is like @code{:foreground}
2121 but the color is only used as a foreground when the background color is
2122 near to the foreground that would have been used.  This is useful for
2123 example when marking text (i.e. the region face).  If the text has a foreground
2124 that is visible with the region face, that foreground is used.
2125 If the foreground is near the region face background,
2126 @code{:distant-foreground} is used instead so the text is readable.
2128 @item :background
2129 Background color, a string.  The value can be a system-defined color
2130 name, or a hexadecimal color specification.  @xref{Color Names}.
2132 @cindex underlined text
2133 @item :underline
2134 Whether or not characters should be underlined, and in what
2135 way.  The possible values of the @code{:underline} attribute are:
2137 @table @asis
2138 @item @code{nil}
2139 Don't underline.
2141 @item @code{t}
2142 Underline with the foreground color of the face.
2144 @item @var{color}
2145 Underline in color @var{color}, a string specifying a color.
2147 @item @code{(:color @var{color} :style @var{style})}
2148 @var{color} is either a string, or the symbol @code{foreground-color},
2149 meaning the foreground color of the face.  Omitting the attribute
2150 @code{:color} means to use the foreground color of the face.
2151 @var{style} should be a symbol @code{line} or @code{wave}, meaning to
2152 use a straight or wavy line.  Omitting the attribute @code{:style}
2153 means to use a straight line.
2154 @end table
2156 @cindex overlined text
2157 @item :overline
2158 Whether or not characters should be overlined, and in what color.
2159 If the value is @code{t}, overlining uses the foreground color of the
2160 face.  If the value is a string, overlining uses that color.  The
2161 value @code{nil} means do not overline.
2163 @cindex strike-through text
2164 @item :strike-through
2165 Whether or not characters should be strike-through, and in what
2166 color.  The value is used like that of @code{:overline}.
2168 @cindex 2D box
2169 @cindex 3D box
2170 @item :box
2171 Whether or not a box should be drawn around characters, its color, the
2172 width of the box lines, and 3D appearance.  Here are the possible
2173 values of the @code{:box} attribute, and what they mean:
2175 @table @asis
2176 @item @code{nil}
2177 Don't draw a box.
2179 @item @code{t}
2180 Draw a box with lines of width 1, in the foreground color.
2182 @item @var{color}
2183 Draw a box with lines of width 1, in color @var{color}.
2185 @item @code{(:line-width @var{width} :color @var{color} :style @var{style})}
2186 This way you can explicitly specify all aspects of the box.  The value
2187 @var{width} specifies the width of the lines to draw; it defaults to
2188 1.  A negative width @var{-n} means to draw a line of width @var{n}
2189 that occupies the space of the underlying text, thus avoiding any
2190 increase in the character height or width.
2192 The value @var{color} specifies the color to draw with.  The default is
2193 the foreground color of the face for simple boxes, and the background
2194 color of the face for 3D boxes.
2196 The value @var{style} specifies whether to draw a 3D box.  If it is
2197 @code{released-button}, the box looks like a 3D button that is not being
2198 pressed.  If it is @code{pressed-button}, the box looks like a 3D button
2199 that is being pressed.  If it is @code{nil} or omitted, a plain 2D box
2200 is used.
2201 @end table
2203 @item :inverse-video
2204 Whether or not characters should be displayed in inverse video.  The
2205 value should be @code{t} (yes) or @code{nil} (no).
2207 @item :stipple
2208 The background stipple, a bitmap.
2210 The value can be a string; that should be the name of a file containing
2211 external-format X bitmap data.  The file is found in the directories
2212 listed in the variable @code{x-bitmap-file-path}.
2214 Alternatively, the value can specify the bitmap directly, with a list
2215 of the form @code{(@var{width} @var{height} @var{data})}.  Here,
2216 @var{width} and @var{height} specify the size in pixels, and
2217 @var{data} is a string containing the raw bits of the bitmap, row by
2218 row.  Each row occupies @math{(@var{width} + 7) / 8} consecutive bytes
2219 in the string (which should be a unibyte string for best results).
2220 This means that each row always occupies at least one whole byte.
2222 If the value is @code{nil}, that means use no stipple pattern.
2224 Normally you do not need to set the stipple attribute, because it is
2225 used automatically to handle certain shades of gray.
2227 @item :font
2228 The font used to display the face.  Its value should be a font object.
2229 @xref{Low-Level Font}, for information about font objects, font specs,
2230 and font entities.
2232 When specifying this attribute using @code{set-face-attribute}
2233 (@pxref{Attribute Functions}), you may also supply a font spec, a font
2234 entity, or a string.  Emacs converts such values to an appropriate
2235 font object, and stores that font object as the actual attribute
2236 value.  If you specify a string, the contents of the string should be
2237 a font name (@pxref{Fonts,,, emacs, The GNU Emacs Manual}); if the
2238 font name is an XLFD containing wildcards, Emacs chooses the first
2239 font matching those wildcards.  Specifying this attribute also changes
2240 the values of the @code{:family}, @code{:foundry}, @code{:width},
2241 @code{:height}, @code{:weight}, and @code{:slant} attributes.
2243 @cindex inheritance, for faces
2244 @item :inherit
2245 The name of a face from which to inherit attributes, or a list of face
2246 names.  Attributes from inherited faces are merged into the face like
2247 an underlying face would be, with higher priority than underlying
2248 faces (@pxref{Displaying Faces}).  If a list of faces is used,
2249 attributes from faces earlier in the list override those from later
2250 faces.
2251 @end table
2253 @defun font-family-list &optional frame
2254 This function returns a list of available font family names.  The
2255 optional argument @var{frame} specifies the frame on which the text is
2256 to be displayed; if it is @code{nil}, the selected frame is used.
2257 @end defun
2259 @defopt underline-minimum-offset
2260 This variable specifies the minimum distance between the baseline and
2261 the underline, in pixels, when displaying underlined text.
2262 @end defopt
2264 @defopt x-bitmap-file-path
2265 This variable specifies a list of directories for searching
2266 for bitmap files, for the @code{:stipple} attribute.
2267 @end defopt
2269 @defun bitmap-spec-p object
2270 This returns @code{t} if @var{object} is a valid bitmap specification,
2271 suitable for use with @code{:stipple} (see above).  It returns
2272 @code{nil} otherwise.
2273 @end defun
2275 @node Defining Faces
2276 @subsection Defining Faces
2278 @cindex face spec
2279   The usual way to define a face is through the @code{defface} macro.
2280 This macro associates a face name (a symbol) with a default @dfn{face
2281 spec}.  A face spec is a construct which specifies what attributes a
2282 face should have on any given terminal; for example, a face spec might
2283 specify one foreground color on high-color terminals, and a different
2284 foreground color on low-color terminals.
2286   People are sometimes tempted to create a variable whose value is a
2287 face name.  In the vast majority of cases, this is not necessary; the
2288 usual procedure is to define a face with @code{defface}, and then use
2289 its name directly.
2291 @defmac defface face spec doc [keyword value]@dots{}
2292 This macro declares @var{face} as a named face whose default face spec
2293 is given by @var{spec}.  You should not quote the symbol @var{face},
2294 and it should not end in @samp{-face} (that would be redundant).  The
2295 argument @var{doc} is a documentation string for the face.  The
2296 additional @var{keyword} arguments have the same meanings as in
2297 @code{defgroup} and @code{defcustom} (@pxref{Common Keywords}).
2299 If @var{face} already has a default face spec, this macro does
2300 nothing.
2302 The default face spec determines @var{face}'s appearance when no
2303 customizations are in effect (@pxref{Customization}).  If @var{face}
2304 has already been customized (via Custom themes or via customizations
2305 read from the init file), its appearance is determined by the custom
2306 face spec(s), which override the default face spec @var{spec}.
2307 However, if the customizations are subsequently removed, the
2308 appearance of @var{face} will again be determined by its default face
2309 spec.
2311 As an exception, if you evaluate a @code{defface} form with
2312 @kbd{C-M-x} in Emacs Lisp mode (@code{eval-defun}), a special feature
2313 of @code{eval-defun} overrides any custom face specs on the face,
2314 causing the face to reflect exactly what the @code{defface} says.
2316 The @var{spec} argument is a @dfn{face spec}, which states how the
2317 face should appear on different kinds of terminals.  It should be an
2318 alist whose elements each have the form
2320 @example
2321 (@var{display} . @var{plist})
2322 @end example
2324 @noindent
2325 @var{display} specifies a class of terminals (see below).  @var{plist}
2326 is a property list of face attributes and their values, specifying how
2327 the face appears on such terminals.  For backward compatibility, you
2328 can also write an element as @code{(@var{display} @var{plist})}.
2330 The @var{display} part of an element of @var{spec} determines which
2331 terminals the element matches.  If more than one element of @var{spec}
2332 matches a given terminal, the first element that matches is the one
2333 used for that terminal.  There are three possibilities for
2334 @var{display}:
2336 @table @asis
2337 @item @code{default}
2338 This element of @var{spec} doesn't match any terminal; instead, it
2339 specifies defaults that apply to all terminals.  This element, if
2340 used, must be the first element of @var{spec}.  Each of the following
2341 elements can override any or all of these defaults.
2343 @item @code{t}
2344 This element of @var{spec} matches all terminals.  Therefore, any
2345 subsequent elements of @var{spec} are never used.  Normally @code{t}
2346 is used in the last (or only) element of @var{spec}.
2348 @item a list
2349 If @var{display} is a list, each element should have the form
2350 @code{(@var{characteristic} @var{value}@dots{})}.  Here
2351 @var{characteristic} specifies a way of classifying terminals, and the
2352 @var{value}s are possible classifications which @var{display} should
2353 apply to.  Here are the possible values of @var{characteristic}:
2355 @table @code
2356 @item type
2357 The kind of window system the terminal uses---either @code{graphic}
2358 (any graphics-capable display), @code{x}, @code{pc} (for the MS-DOS
2359 console), @code{w32} (for MS Windows 9X/NT/2K/XP), or @code{tty} (a
2360 non-graphics-capable display).  @xref{Window Systems, window-system}.
2362 @item class
2363 What kinds of colors the terminal supports---either @code{color},
2364 @code{grayscale}, or @code{mono}.
2366 @item background
2367 The kind of background---either @code{light} or @code{dark}.
2369 @item min-colors
2370 An integer that represents the minimum number of colors the terminal
2371 should support.  This matches a terminal if its
2372 @code{display-color-cells} value is at least the specified integer.
2374 @item supports
2375 Whether or not the terminal can display the face attributes given in
2376 @var{value}@dots{} (@pxref{Face Attributes}).  @xref{Display Face
2377 Attribute Testing}, for more information on exactly how this testing
2378 is done.
2379 @end table
2381 If an element of @var{display} specifies more than one @var{value} for
2382 a given @var{characteristic}, any of those values is acceptable.  If
2383 @var{display} has more than one element, each element should specify a
2384 different @var{characteristic}; then @emph{each} characteristic of the
2385 terminal must match one of the @var{value}s specified for it in
2386 @var{display}.
2387 @end table
2388 @end defmac
2390   For example, here's the definition of the standard face
2391 @code{highlight}:
2393 @example
2394 (defface highlight
2395   '((((class color) (min-colors 88) (background light))
2396      :background "darkseagreen2")
2397     (((class color) (min-colors 88) (background dark))
2398      :background "darkolivegreen")
2399     (((class color) (min-colors 16) (background light))
2400      :background "darkseagreen2")
2401     (((class color) (min-colors 16) (background dark))
2402      :background "darkolivegreen")
2403     (((class color) (min-colors 8))
2404      :background "green" :foreground "black")
2405     (t :inverse-video t))
2406   "Basic face for highlighting."
2407   :group 'basic-faces)
2408 @end example
2410   Internally, Emacs stores each face's default spec in its
2411 @code{face-defface-spec} symbol property (@pxref{Symbol Properties}).
2412 The @code{saved-face} property stores any face spec saved by the user
2413 using the customization buffer; the @code{customized-face} property
2414 stores the face spec customized for the current session, but not
2415 saved; and the @code{theme-face} property stores an alist associating
2416 the active customization settings and Custom themes with the face
2417 specs for that face.  The face's documentation string is stored in the
2418 @code{face-documentation} property.
2420   Normally, a face is declared just once, using @code{defface}, and
2421 any further changes to its appearance are applied using the Customize
2422 framework (e.g., via the Customize user interface or via the
2423 @code{custom-set-faces} function; @pxref{Applying Customizations}), or
2424 by face remapping (@pxref{Face Remapping}).  In the rare event that
2425 you need to change a face spec directly from Lisp, you can use the
2426 @code{face-spec-set} function.
2428 @defun face-spec-set face spec &optional spec-type
2429 This function applies @var{spec} as a face spec for @code{face}.
2430 @var{spec} should be a face spec, as described in the above
2431 documentation for @code{defface}.
2433 This function also defines @var{face} as a valid face name if it is
2434 not already one, and (re)calculates its attributes on existing frames.
2436 @cindex override spec @r{(for a face)}
2437 The argument @var{spec-type} determines which spec to set.  If it is
2438 @code{nil} or @code{face-override-spec}, this function sets the
2439 @dfn{override spec}, which overrides over all other face specs on
2440 @var{face}.  If it is @code{customized-face} or @code{saved-face},
2441 this function sets the customized spec or the saved custom spec.  If
2442 it is @code{face-defface-spec}, this function sets the default face
2443 spec (the same one set by @code{defface}).  If it is @code{reset},
2444 this function clears out all customization specs and override specs
2445 from @var{face} (in this case, the value of @var{spec} is ignored).
2446 Any other value of @var{spec-type} is reserved for internal use.
2447 @end defun
2449 @node Attribute Functions
2450 @subsection Face Attribute Functions
2452   This section describes functions for directly accessing and
2453 modifying the attributes of a named face.
2455 @defun face-attribute face attribute &optional frame inherit
2456 This function returns the value of the @var{attribute} attribute for
2457 @var{face} on @var{frame}.
2459 If @var{frame} is @code{nil}, that means the selected frame
2460 (@pxref{Input Focus}).  If @var{frame} is @code{t}, this function
2461 returns the value of the specified attribute for newly-created frames
2462 (this is normally @code{unspecified}, unless you have specified some
2463 value using @code{set-face-attribute}; see below).
2465 If @var{inherit} is @code{nil}, only attributes directly defined by
2466 @var{face} are considered, so the return value may be
2467 @code{unspecified}, or a relative value.  If @var{inherit} is
2468 non-@code{nil}, @var{face}'s definition of @var{attribute} is merged
2469 with the faces specified by its @code{:inherit} attribute; however the
2470 return value may still be @code{unspecified} or relative.  If
2471 @var{inherit} is a face or a list of faces, then the result is further
2472 merged with that face (or faces), until it becomes specified and
2473 absolute.
2475 To ensure that the return value is always specified and absolute, use
2476 a value of @code{default} for @var{inherit}; this will resolve any
2477 unspecified or relative values by merging with the @code{default} face
2478 (which is always completely specified).
2480 For example,
2482 @example
2483 (face-attribute 'bold :weight)
2484      @result{} bold
2485 @end example
2486 @end defun
2488 @c FIXME: Add an index for "relative face attribute", maybe here?  --xfq
2489 @defun face-attribute-relative-p attribute value
2490 This function returns non-@code{nil} if @var{value}, when used as the
2491 value of the face attribute @var{attribute}, is relative.  This means
2492 it would modify, rather than completely override, any value that comes
2493 from a subsequent face in the face list or that is inherited from
2494 another face.
2496 @code{unspecified} is a relative value for all attributes.  For
2497 @code{:height}, floating point and function values are also relative.
2499 For example:
2501 @example
2502 (face-attribute-relative-p :height 2.0)
2503      @result{} t
2504 @end example
2505 @end defun
2507 @defun face-all-attributes face &optional frame
2508 This function returns an alist of attributes of @var{face}.  The
2509 elements of the result are name-value pairs of the form
2510 @w{@code{(@var{attr-name} . @var{attr-value})}}.  Optional argument
2511 @var{frame} specifies the frame whose definition of @var{face} to
2512 return; if omitted or @code{nil}, the returned value describes the
2513 default attributes of @var{face} for newly created frames.
2514 @end defun
2516 @defun merge-face-attribute attribute value1 value2
2517 If @var{value1} is a relative value for the face attribute
2518 @var{attribute}, returns it merged with the underlying value
2519 @var{value2}; otherwise, if @var{value1} is an absolute value for the
2520 face attribute @var{attribute}, returns @var{value1} unchanged.
2521 @end defun
2523   Normally, Emacs uses the face specs of each face to automatically
2524 calculate its attributes on each frame (@pxref{Defining Faces}).  The
2525 function @code{set-face-attribute} can override this calculation by
2526 directly assigning attributes to a face, either on a specific frame or
2527 for all frames.  This function is mostly intended for internal usage.
2529 @defun set-face-attribute face frame &rest arguments
2530 This function sets one or more attributes of @var{face} for
2531 @var{frame}.  The attributes specifies in this way override the face
2532 spec(s) belonging to @var{face}.
2534 The extra arguments @var{arguments} specify the attributes to set, and
2535 the values for them.  They should consist of alternating attribute
2536 names (such as @code{:family} or @code{:underline}) and values.  Thus,
2538 @example
2539 (set-face-attribute 'foo nil :weight 'bold :slant 'italic)
2540 @end example
2542 @noindent
2543 sets the attribute @code{:weight} to @code{bold} and the attribute
2544 @code{:slant} to @code{italic}.
2547 If @var{frame} is @code{t}, this function sets the default attributes
2548 for newly created frames.  If @var{frame} is @code{nil}, this function
2549 sets the attributes for all existing frames, as well as for newly
2550 created frames.
2551 @end defun
2553   The following commands and functions mostly provide compatibility
2554 with old versions of Emacs.  They work by calling
2555 @code{set-face-attribute}.  Values of @code{t} and @code{nil} for
2556 their @var{frame} argument are handled just like
2557 @code{set-face-attribute} and @code{face-attribute}.  The commands
2558 read their arguments using the minibuffer, if called interactively.
2560 @deffn Command set-face-foreground face color &optional frame
2561 @deffnx Command set-face-background face color &optional frame
2562 These set the @code{:foreground} attribute (or @code{:background}
2563 attribute, respectively) of @var{face} to @var{color}.
2564 @end deffn
2566 @deffn Command set-face-stipple face pattern &optional frame
2567 This sets the @code{:stipple} attribute of @var{face} to
2568 @var{pattern}.
2569 @end deffn
2571 @deffn Command set-face-font face font &optional frame
2572 This sets the @code{:font} attribute of @var{face} to @var{font}.
2573 @end deffn
2575 @defun set-face-bold face bold-p &optional frame
2576 This sets the @code{:weight} attribute of @var{face} to @var{normal}
2577 if @var{bold-p} is @code{nil}, and to @var{bold} otherwise.
2578 @end defun
2580 @defun set-face-italic face italic-p &optional frame
2581 This sets the @code{:slant} attribute of @var{face} to @var{normal} if
2582 @var{italic-p} is @code{nil}, and to @var{italic} otherwise.
2583 @end defun
2585 @defun set-face-underline face underline &optional frame
2586 This sets the @code{:underline} attribute of @var{face} to
2587 @var{underline}.
2588 @end defun
2590 @defun set-face-inverse-video face inverse-video-p &optional frame
2591 This sets the @code{:inverse-video} attribute of @var{face} to
2592 @var{inverse-video-p}.
2593 @end defun
2595 @deffn Command invert-face face &optional frame
2596 This swaps the foreground and background colors of face @var{face}.
2597 @end deffn
2599   The following functions examine the attributes of a face.  They
2600 mostly provide compatibility with old versions of Emacs.  If you don't
2601 specify @var{frame}, they refer to the selected frame; @code{t} refers
2602 to the default data for new frames.  They return @code{unspecified} if
2603 the face doesn't define any value for that attribute.  If
2604 @var{inherit} is @code{nil}, only an attribute directly defined by the
2605 face is returned.  If @var{inherit} is non-@code{nil}, any faces
2606 specified by its @code{:inherit} attribute are considered as well, and
2607 if @var{inherit} is a face or a list of faces, then they are also
2608 considered, until a specified attribute is found.  To ensure that the
2609 return value is always specified, use a value of @code{default} for
2610 @var{inherit}.
2612 @defun face-font face &optional frame
2613 This function returns the name of the font of face @var{face}.
2614 @end defun
2616 @defun face-foreground face &optional frame inherit
2617 @defunx face-background face &optional frame inherit
2618 These functions return the foreground color (or background color,
2619 respectively) of face @var{face}, as a string.
2620 @end defun
2622 @defun face-stipple face &optional frame inherit
2623 This function returns the name of the background stipple pattern of face
2624 @var{face}, or @code{nil} if it doesn't have one.
2625 @end defun
2627 @defun face-bold-p face &optional frame inherit
2628 This function returns a non-@code{nil} value if the @code{:weight}
2629 attribute of @var{face} is bolder than normal (i.e., one of
2630 @code{semi-bold}, @code{bold}, @code{extra-bold}, or
2631 @code{ultra-bold}).  Otherwise, it returns @code{nil}.
2632 @end defun
2634 @defun face-italic-p face &optional frame inherit
2635 This function returns a non-@code{nil} value if the @code{:slant}
2636 attribute of @var{face} is @code{italic} or @code{oblique}, and
2637 @code{nil} otherwise.
2638 @end defun
2640 @defun face-underline-p face &optional frame inherit
2641 This function returns non-@code{nil} if face @var{face} specifies
2642 a non-@code{nil} @code{:underline} attribute.
2643 @end defun
2645 @defun face-inverse-video-p face &optional frame inherit
2646 This function returns non-@code{nil} if face @var{face} specifies
2647 a non-@code{nil} @code{:inverse-video} attribute.
2648 @end defun
2650 @node Displaying Faces
2651 @subsection Displaying Faces
2653   When Emacs displays a given piece of text, the visual appearance of
2654 the text may be determined by faces drawn from different sources.  If
2655 these various sources together specify more than one face for a
2656 particular character, Emacs merges the attributes of the various
2657 faces.  Here is the order in which Emacs merges the faces, from
2658 highest to lowest priority:
2660 @itemize @bullet
2661 @item
2662 If the text consists of a special glyph, the glyph can specify a
2663 particular face.  @xref{Glyphs}.
2665 @item
2666 If the text lies within an active region, Emacs highlights it using
2667 the @code{region} face.  @xref{Standard Faces,,, emacs, The GNU Emacs
2668 Manual}.
2670 @item
2671 If the text lies within an overlay with a non-@code{nil} @code{face}
2672 property, Emacs applies the face(s) specified by that property.  If
2673 the overlay has a @code{mouse-face} property and the mouse is ``near
2674 enough'' to the overlay, Emacs applies the face or face attributes
2675 specified by the @code{mouse-face} property instead.  @xref{Overlay
2676 Properties}.
2678 When multiple overlays cover one character, an overlay with higher
2679 priority overrides those with lower priority.  @xref{Overlays}.
2681 @item
2682 If the text contains a @code{face} or @code{mouse-face} property,
2683 Emacs applies the specified faces and face attributes.  @xref{Special
2684 Properties}.  (This is how Font Lock mode faces are applied.
2685 @xref{Font Lock Mode}.)
2687 @item
2688 If the text lies within the mode line of the selected window, Emacs
2689 applies the @code{mode-line} face.  For the mode line of a
2690 non-selected window, Emacs applies the @code{mode-line-inactive} face.
2691 For a header line, Emacs applies the @code{header-line} face.
2693 @item
2694 If any given attribute has not been specified during the preceding
2695 steps, Emacs applies the attribute of the @code{default} face.
2696 @end itemize
2698   At each stage, if a face has a valid @code{:inherit} attribute,
2699 Emacs treats any attribute with an @code{unspecified} value as having
2700 the corresponding value drawn from the parent face(s).  @pxref{Face
2701 Attributes}.  Note that the parent face(s) may also leave the
2702 attribute unspecified; in that case, the attribute remains unspecified
2703 at the next level of face merging.
2705 @node Face Remapping
2706 @subsection Face Remapping
2708   The variable @code{face-remapping-alist} is used for buffer-local or
2709 global changes in the appearance of a face.  For instance, it is used
2710 to implement the @code{text-scale-adjust} command (@pxref{Text
2711 Scale,,, emacs, The GNU Emacs Manual}).
2713 @defvar face-remapping-alist
2714 The value of this variable is an alist whose elements have the form
2715 @code{(@var{face} . @var{remapping})}.  This causes Emacs to display
2716 any text having the face @var{face} with @var{remapping}, rather than
2717 the ordinary definition of @var{face}.
2719 @var{remapping} may be any face spec suitable for a @code{face} text
2720 property: either a face (i.e., a face name or a property list of
2721 attribute/value pairs), or a list of faces.  For details, see the
2722 description of the @code{face} text property in @ref{Special
2723 Properties}.  @var{remapping} serves as the complete specification for
2724 the remapped face---it replaces the normal definition of @var{face},
2725 instead of modifying it.
2727 If @code{face-remapping-alist} is buffer-local, its local value takes
2728 effect only within that buffer.
2730 Note: face remapping is non-recursive.  If @var{remapping} references
2731 the same face name @var{face}, either directly or via the
2732 @code{:inherit} attribute of some other face in @var{remapping}, that
2733 reference uses the normal definition of @var{face}.  For instance, if
2734 the @code{mode-line} face is remapped using this entry in
2735 @code{face-remapping-alist}:
2737 @example
2738 (mode-line italic mode-line)
2739 @end example
2741 @noindent
2742 then the new definition of the @code{mode-line} face inherits from the
2743 @code{italic} face, and the @emph{normal} (non-remapped) definition of
2744 @code{mode-line} face.
2745 @end defvar
2747 @cindex relative remapping, faces
2748 @cindex base remapping, faces
2749   The following functions implement a higher-level interface to
2750 @code{face-remapping-alist}.  Most Lisp code should use these
2751 functions instead of setting @code{face-remapping-alist} directly, to
2752 avoid trampling on remappings applied elsewhere.  These functions are
2753 intended for buffer-local remappings, so they all make
2754 @code{face-remapping-alist} buffer-local as a side-effect. They manage
2755 @code{face-remapping-alist} entries of the form
2757 @example
2758   (@var{face} @var{relative-spec-1} @var{relative-spec-2} @var{...} @var{base-spec})
2759 @end example
2761 @noindent
2762 where, as explained above, each of the @var{relative-spec-N} and
2763 @var{base-spec} is either a face name, or a property list of
2764 attribute/value pairs.  Each of the @dfn{relative remapping} entries,
2765 @var{relative-spec-N}, is managed by the
2766 @code{face-remap-add-relative} and @code{face-remap-remove-relative}
2767 functions; these are intended for simple modifications like changing
2768 the text size.  The @dfn{base remapping} entry, @var{base-spec}, has
2769 the lowest priority and is managed by the @code{face-remap-set-base}
2770 and @code{face-remap-reset-base} functions; it is intended for major
2771 modes to remap faces in the buffers they control.
2773 @defun face-remap-add-relative face &rest specs
2774 This function adds the face spec in @var{specs} as relative
2775 remappings for face @var{face} in the current buffer.  The remaining
2776 arguments, @var{specs}, should form either a list of face names, or a
2777 property list of attribute/value pairs.
2779 The return value is a Lisp object that serves as a ``cookie''; you can
2780 pass this object as an argument to @code{face-remap-remove-relative}
2781 if you need to remove the remapping later.
2783 @example
2784 ;; Remap the `escape-glyph' face into a combination
2785 ;; of the `highlight' and `italic' faces:
2786 (face-remap-add-relative 'escape-glyph 'highlight 'italic)
2788 ;; Increase the size of the `default' face by 50%:
2789 (face-remap-add-relative 'default :height 1.5)
2790 @end example
2791 @end defun
2793 @defun face-remap-remove-relative cookie
2794 This function removes a relative remapping previously added by
2795 @code{face-remap-add-relative}.  @var{cookie} should be the Lisp
2796 object returned by @code{face-remap-add-relative} when the remapping
2797 was added.
2798 @end defun
2800 @defun face-remap-set-base face &rest specs
2801 This function sets the base remapping of @var{face} in the current
2802 buffer to @var{specs}.  If @var{specs} is empty, the default base
2803 remapping is restored, similar to calling @code{face-remap-reset-base}
2804 (see below); note that this is different from @var{specs} containing a
2805 single value @code{nil}, which has the opposite result (the global
2806 definition of @var{face} is ignored).
2808 This overwrites the default @var{base-spec}, which inherits the global
2809 face definition, so it is up to the caller to add such inheritance if
2810 so desired.
2811 @end defun
2813 @defun face-remap-reset-base face
2814 This function sets the base remapping of @var{face} to its default
2815 value, which inherits from @var{face}'s global definition.
2816 @end defun
2818 @node Face Functions
2819 @subsection Functions for Working with Faces
2821   Here are additional functions for creating and working with faces.
2823 @defun face-list
2824 This function returns a list of all defined face names.
2825 @end defun
2827 @defun face-id face
2828 This function returns the @dfn{face number} of face @var{face}.  This
2829 is a number that uniquely identifies a face at low levels within
2830 Emacs.  It is seldom necessary to refer to a face by its face number.
2831 @end defun
2833 @defun face-documentation face
2834 This function returns the documentation string of face @var{face}, or
2835 @code{nil} if none was specified for it.
2836 @end defun
2838 @defun face-equal face1 face2 &optional frame
2839 This returns @code{t} if the faces @var{face1} and @var{face2} have the
2840 same attributes for display.
2841 @end defun
2843 @defun face-differs-from-default-p face &optional frame
2844 This returns non-@code{nil} if the face @var{face} displays
2845 differently from the default face.
2846 @end defun
2848 @cindex face alias
2849 @cindex alias, for faces
2850 A @dfn{face alias} provides an equivalent name for a face.  You can
2851 define a face alias by giving the alias symbol the @code{face-alias}
2852 property, with a value of the target face name.  The following example
2853 makes @code{modeline} an alias for the @code{mode-line} face.
2855 @example
2856 (put 'modeline 'face-alias 'mode-line)
2857 @end example
2859 @defmac define-obsolete-face-alias obsolete-face current-face when
2860 This macro defines @code{obsolete-face} as an alias for
2861 @var{current-face}, and also marks it as obsolete, indicating that it
2862 may be removed in future.  @var{when} should be a string indicating
2863 when @code{obsolete-face} was made obsolete (usually a version number
2864 string).
2865 @end defmac
2867 @node Auto Faces
2868 @subsection Automatic Face Assignment
2869 @cindex automatic face assignment
2870 @cindex faces, automatic choice
2872   This hook is used for automatically assigning faces to text in the
2873 buffer.  It is part of the implementation of Jit-Lock mode, used by
2874 Font-Lock.
2876 @defvar fontification-functions
2877 This variable holds a list of functions that are called by Emacs
2878 redisplay as needed, just before doing redisplay.  They are called even
2879 when Font Lock Mode isn't enabled.  When Font Lock Mode is enabled, this
2880 variable usually holds just one function, @code{jit-lock-function}.
2882 The functions are called in the order listed, with one argument, a
2883 buffer position @var{pos}.  Collectively they should attempt to assign
2884 faces to the text in the current buffer starting at @var{pos}.
2886 The functions should record the faces they assign by setting the
2887 @code{face} property.  They should also add a non-@code{nil}
2888 @code{fontified} property to all the text they have assigned faces to.
2889 That property tells redisplay that faces have been assigned to that text
2890 already.
2892 It is probably a good idea for the functions to do nothing if the
2893 character after @var{pos} already has a non-@code{nil} @code{fontified}
2894 property, but this is not required.  If one function overrides the
2895 assignments made by a previous one, the properties after the last
2896 function finishes are the ones that really matter.
2898 For efficiency, we recommend writing these functions so that they
2899 usually assign faces to around 400 to 600 characters at each call.
2900 @end defvar
2902 @node Basic Faces
2903 @subsection Basic Faces
2905 If your Emacs Lisp program needs to assign some faces to text, it is
2906 often a good idea to use certain existing faces or inherit from them,
2907 rather than defining entirely new faces.  This way, if other users
2908 have customized the basic faces to give Emacs a certain look, your
2909 program will ``fit in'' without additional customization.
2911   Some of the basic faces defined in Emacs are listed below.  In
2912 addition to these, you might want to make use of the Font Lock faces
2913 for syntactic highlighting, if highlighting is not already handled by
2914 Font Lock mode, or if some Font Lock faces are not in use.
2915 @xref{Faces for Font Lock}.
2917 @table @code
2918 @item default
2919 The default face, whose attributes are all specified.  All other faces
2920 implicitly inherit from it: any unspecified attribute defaults to the
2921 attribute on this face (@pxref{Face Attributes}).
2923 @item bold
2924 @itemx italic
2925 @itemx bold-italic
2926 @itemx underline
2927 @itemx fixed-pitch
2928 @itemx variable-pitch
2929 These have the attributes indicated by their names (e.g., @code{bold}
2930 has a bold @code{:weight} attribute), with all other attributes
2931 unspecified (and so given by @code{default}).
2933 @item shadow
2934 For ``dimmed out'' text.  For example, it is used for the ignored
2935 part of a filename in the minibuffer (@pxref{Minibuffer File,,
2936 Minibuffers for File Names, emacs, The GNU Emacs Manual}).
2938 @item link
2939 @itemx link-visited
2940 For clickable text buttons that send the user to a different
2941 buffer or ``location''.
2943 @item highlight
2944 For stretches of text that should temporarily stand out.  For example,
2945 it is commonly assigned to the @code{mouse-face} property for cursor
2946 highlighting (@pxref{Special Properties}).
2948 @item match
2949 For text matching a search command.
2951 @item error
2952 @itemx warning
2953 @itemx success
2954 For text concerning errors, warnings, or successes.  For example,
2955 these are used for messages in @file{*Compilation*} buffers.
2956 @end table
2958 @node Font Selection
2959 @subsection Font Selection
2960 @cindex font selection
2961 @cindex selecting a font
2963   Before Emacs can draw a character on a graphical display, it must
2964 select a @dfn{font} for that character@footnote{In this context, the
2965 term @dfn{font} has nothing to do with Font Lock (@pxref{Font Lock
2966 Mode}).}.  @xref{Fonts,,, emacs, The GNU Emacs Manual}.  Normally,
2967 Emacs automatically chooses a font based on the faces assigned to that
2968 character---specifically, the face attributes @code{:family},
2969 @code{:weight}, @code{:slant}, and @code{:width} (@pxref{Face
2970 Attributes}).  The choice of font also depends on the character to be
2971 displayed; some fonts can only display a limited set of characters.
2972 If no available font exactly fits the requirements, Emacs looks for
2973 the @dfn{closest matching font}.  The variables in this section
2974 control how Emacs makes this selection.
2976 @defopt face-font-family-alternatives
2977 If a given family is specified but does not exist, this variable
2978 specifies alternative font families to try.  Each element should have
2979 this form:
2981 @example
2982 (@var{family} @var{alternate-families}@dots{})
2983 @end example
2985 If @var{family} is specified but not available, Emacs will try the other
2986 families given in @var{alternate-families}, one by one, until it finds a
2987 family that does exist.
2988 @end defopt
2990 @defopt face-font-selection-order
2991 If there is no font that exactly matches all desired face attributes
2992 (@code{:width}, @code{:height}, @code{:weight}, and @code{:slant}),
2993 this variable specifies the order in which these attributes should be
2994 considered when selecting the closest matching font.  The value should
2995 be a list containing those four attribute symbols, in order of
2996 decreasing importance.  The default is @code{(:width :height :weight
2997 :slant)}.
2999 Font selection first finds the best available matches for the first
3000 attribute in the list; then, among the fonts which are best in that
3001 way, it searches for the best matches in the second attribute, and so
3004 The attributes @code{:weight} and @code{:width} have symbolic values in
3005 a range centered around @code{normal}.  Matches that are more extreme
3006 (farther from @code{normal}) are somewhat preferred to matches that are
3007 less extreme (closer to @code{normal}); this is designed to ensure that
3008 non-normal faces contrast with normal ones, whenever possible.
3010 One example of a case where this variable makes a difference is when the
3011 default font has no italic equivalent.  With the default ordering, the
3012 @code{italic} face will use a non-italic font that is similar to the
3013 default one.  But if you put @code{:slant} before @code{:height}, the
3014 @code{italic} face will use an italic font, even if its height is not
3015 quite right.
3016 @end defopt
3018 @defopt face-font-registry-alternatives
3019 This variable lets you specify alternative font registries to try, if a
3020 given registry is specified and doesn't exist.  Each element should have
3021 this form:
3023 @example
3024 (@var{registry} @var{alternate-registries}@dots{})
3025 @end example
3027 If @var{registry} is specified but not available, Emacs will try the
3028 other registries given in @var{alternate-registries}, one by one,
3029 until it finds a registry that does exist.
3030 @end defopt
3032 @cindex scalable fonts
3033   Emacs can make use of scalable fonts, but by default it does not use
3034 them.
3036 @defopt scalable-fonts-allowed
3037 This variable controls which scalable fonts to use.  A value of
3038 @code{nil}, the default, means do not use scalable fonts.  @code{t}
3039 means to use any scalable font that seems appropriate for the text.
3041 Otherwise, the value must be a list of regular expressions.  Then a
3042 scalable font is enabled for use if its name matches any regular
3043 expression in the list.  For example,
3045 @example
3046 (setq scalable-fonts-allowed '("iso10646-1$"))
3047 @end example
3049 @noindent
3050 allows the use of scalable fonts with registry @code{iso10646-1}.
3051 @end defopt
3053 @defvar face-font-rescale-alist
3054 This variable specifies scaling for certain faces.  Its value should
3055 be a list of elements of the form
3057 @example
3058 (@var{fontname-regexp} . @var{scale-factor})
3059 @end example
3061 If @var{fontname-regexp} matches the font name that is about to be
3062 used, this says to choose a larger similar font according to the
3063 factor @var{scale-factor}.  You would use this feature to normalize
3064 the font size if certain fonts are bigger or smaller than their
3065 nominal heights and widths would suggest.
3066 @end defvar
3068 @node Font Lookup
3069 @subsection Looking Up Fonts
3071 @defun x-list-fonts name &optional reference-face frame maximum width
3072 This function returns a list of available font names that match
3073 @var{name}.  @var{name} should be a string containing a font name in
3074 either the Fontconfig, GTK, or XLFD format (@pxref{Fonts,,, emacs, The
3075 GNU Emacs Manual}).  Within an XLFD string, wildcard characters may be
3076 used: the @samp{*} character matches any substring, and the @samp{?}
3077 character matches any single character.  Case is ignored when matching
3078 font names.
3080 If the optional arguments @var{reference-face} and @var{frame} are
3081 specified, the returned list includes only fonts that are the same
3082 size as @var{reference-face} (a face name) currently is on the frame
3083 @var{frame}.
3085 The optional argument @var{maximum} sets a limit on how many fonts to
3086 return.  If it is non-@code{nil}, then the return value is truncated
3087 after the first @var{maximum} matching fonts.  Specifying a small
3088 value for @var{maximum} can make this function much faster, in cases
3089 where many fonts match the pattern.
3091 The optional argument @var{width} specifies a desired font width.  If
3092 it is non-@code{nil}, the function only returns those fonts whose
3093 characters are (on average) @var{width} times as wide as
3094 @var{reference-face}.
3095 @end defun
3097 @defun x-family-fonts &optional family frame
3098 This function returns a list describing the available fonts for family
3099 @var{family} on @var{frame}.  If @var{family} is omitted or @code{nil},
3100 this list applies to all families, and therefore, it contains all
3101 available fonts.  Otherwise, @var{family} must be a string; it may
3102 contain the wildcards @samp{?} and @samp{*}.
3104 The list describes the display that @var{frame} is on; if @var{frame} is
3105 omitted or @code{nil}, it applies to the selected frame's display
3106 (@pxref{Input Focus}).
3108 Each element in the list is a vector of the following form:
3110 @example
3111 [@var{family} @var{width} @var{point-size} @var{weight} @var{slant}
3112  @var{fixed-p} @var{full} @var{registry-and-encoding}]
3113 @end example
3115 The first five elements correspond to face attributes; if you
3116 specify these attributes for a face, it will use this font.
3118 The last three elements give additional information about the font.
3119 @var{fixed-p} is non-@code{nil} if the font is fixed-pitch.
3120 @var{full} is the full name of the font, and
3121 @var{registry-and-encoding} is a string giving the registry and
3122 encoding of the font.
3123 @end defun
3125 @node Fontsets
3126 @subsection Fontsets
3128   A @dfn{fontset} is a list of fonts, each assigned to a range of
3129 character codes.  An individual font cannot display the whole range of
3130 characters that Emacs supports, but a fontset can.  Fontsets have names,
3131 just as fonts do, and you can use a fontset name in place of a font name
3132 when you specify the ``font'' for a frame or a face.  Here is
3133 information about defining a fontset under Lisp program control.
3135 @defun create-fontset-from-fontset-spec fontset-spec &optional style-variant-p noerror
3136 This function defines a new fontset according to the specification
3137 string @var{fontset-spec}.  The string should have this format:
3139 @smallexample
3140 @var{fontpattern}, @r{[}@var{charset}:@var{font}@r{]@dots{}}
3141 @end smallexample
3143 @noindent
3144 Whitespace characters before and after the commas are ignored.
3146 The first part of the string, @var{fontpattern}, should have the form of
3147 a standard X font name, except that the last two fields should be
3148 @samp{fontset-@var{alias}}.
3150 The new fontset has two names, one long and one short.  The long name is
3151 @var{fontpattern} in its entirety.  The short name is
3152 @samp{fontset-@var{alias}}.  You can refer to the fontset by either
3153 name.  If a fontset with the same name already exists, an error is
3154 signaled, unless @var{noerror} is non-@code{nil}, in which case this
3155 function does nothing.
3157 If optional argument @var{style-variant-p} is non-@code{nil}, that says
3158 to create bold, italic and bold-italic variants of the fontset as well.
3159 These variant fontsets do not have a short name, only a long one, which
3160 is made by altering @var{fontpattern} to indicate the bold and/or italic
3161 status.
3163 The specification string also says which fonts to use in the fontset.
3164 See below for the details.
3165 @end defun
3167   The construct @samp{@var{charset}:@var{font}} specifies which font to
3168 use (in this fontset) for one particular character set.  Here,
3169 @var{charset} is the name of a character set, and @var{font} is the font
3170 to use for that character set.  You can use this construct any number of
3171 times in the specification string.
3173   For the remaining character sets, those that you don't specify
3174 explicitly, Emacs chooses a font based on @var{fontpattern}: it replaces
3175 @samp{fontset-@var{alias}} with a value that names one character set.
3176 For the @acronym{ASCII} character set, @samp{fontset-@var{alias}} is replaced
3177 with @samp{ISO8859-1}.
3179   In addition, when several consecutive fields are wildcards, Emacs
3180 collapses them into a single wildcard.  This is to prevent use of
3181 auto-scaled fonts.  Fonts made by scaling larger fonts are not usable
3182 for editing, and scaling a smaller font is not useful because it is
3183 better to use the smaller font in its own size, which Emacs does.
3185   Thus if @var{fontpattern} is this,
3187 @example
3188 -*-fixed-medium-r-normal-*-24-*-*-*-*-*-fontset-24
3189 @end example
3191 @noindent
3192 the font specification for @acronym{ASCII} characters would be this:
3194 @example
3195 -*-fixed-medium-r-normal-*-24-*-ISO8859-1
3196 @end example
3198 @noindent
3199 and the font specification for Chinese GB2312 characters would be this:
3201 @example
3202 -*-fixed-medium-r-normal-*-24-*-gb2312*-*
3203 @end example
3205   You may not have any Chinese font matching the above font
3206 specification.  Most X distributions include only Chinese fonts that
3207 have @samp{song ti} or @samp{fangsong ti} in the @var{family} field.  In
3208 such a case, @samp{Fontset-@var{n}} can be specified as below:
3210 @smallexample
3211 Emacs.Fontset-0: -*-fixed-medium-r-normal-*-24-*-*-*-*-*-fontset-24,\
3212         chinese-gb2312:-*-*-medium-r-normal-*-24-*-gb2312*-*
3213 @end smallexample
3215 @noindent
3216 Then, the font specifications for all but Chinese GB2312 characters have
3217 @samp{fixed} in the @var{family} field, and the font specification for
3218 Chinese GB2312 characters has a wild card @samp{*} in the @var{family}
3219 field.
3221 @defun set-fontset-font name character font-spec &optional frame add
3222 This function modifies the existing fontset @var{name} to use the font
3223 matching with @var{font-spec} for the character @var{character}.
3225 If @var{name} is @code{nil}, this function modifies the fontset of the
3226 selected frame or that of @var{frame} if @var{frame} is not
3227 @code{nil}.
3229 If @var{name} is @code{t}, this function modifies the default
3230 fontset, whose short name is @samp{fontset-default}.
3232 @var{character} may be a cons; @code{(@var{from} . @var{to})}, where
3233 @var{from} and @var{to} are character codepoints.  In that case, use
3234 @var{font-spec} for all characters in the range @var{from} and @var{to}
3235 (inclusive).
3237 @var{character} may be a charset.  In that case, use
3238 @var{font-spec} for all character in the charsets.
3240 @var{character} may be a script name.  In that case, use
3241 @var{font-spec} for all character in the charsets.
3243 @var{font-spec} may be a cons; @code{(@var{family} . @var{registry})},
3244 where @var{family} is a family name of a font (possibly including a
3245 foundry name at the head), @var{registry} is a registry name of a font
3246 (possibly including an encoding name at the tail).
3248 @var{font-spec} may be a font name string.
3250 The optional argument @var{add}, if non-@code{nil}, specifies how to
3251 add @var{font-spec} to the font specifications previously set.  If it
3252 is @code{prepend}, @var{font-spec} is prepended.  If it is
3253 @code{append}, @var{font-spec} is appended.  By default,
3254 @var{font-spec} overrides the previous settings.
3256 For instance, this changes the default fontset to use a font of which
3257 family name is @samp{Kochi Gothic} for all characters belonging to
3258 the charset @code{japanese-jisx0208}.
3260 @smallexample
3261 (set-fontset-font t 'japanese-jisx0208
3262                   (font-spec :family "Kochi Gothic"))
3263 @end smallexample
3264 @end defun
3266 @defun char-displayable-p char
3267 This function returns @code{t} if Emacs ought to be able to display
3268 @var{char}.  More precisely, if the selected frame's fontset has a
3269 font to display the character set that @var{char} belongs to.
3271 Fontsets can specify a font on a per-character basis; when the fontset
3272 does that, this function's value may not be accurate.
3273 @end defun
3275 @node Low-Level Font
3276 @subsection Low-Level Font Representation
3277 @cindex font property
3279   Normally, it is not necessary to manipulate fonts directly.  In case
3280 you need to do so, this section explains how.
3282   In Emacs Lisp, fonts are represented using three different Lisp
3283 object types: @dfn{font objects}, @dfn{font specs}, and @dfn{font
3284 entities}.
3286 @defun fontp object &optional type
3287 Return @code{t} if @var{object} is a font object, font spec, or font
3288 entity.  Otherwise, return @code{nil}.
3290 The optional argument @var{type}, if non-@code{nil}, determines the
3291 exact type of Lisp object to check for.  In that case, @var{type}
3292 should be one of @code{font-object}, @code{font-spec}, or
3293 @code{font-entity}.
3294 @end defun
3296 @cindex font object
3297   A font object is a Lisp object that represents a font that Emacs has
3298 @dfn{opened}.  Font objects cannot be modified in Lisp, but they can
3299 be inspected.
3301 @defun font-at position &optional window string
3302 Return the font object that is being used to display the character at
3303 position @var{position} in the window @var{window}.  If @var{window}
3304 is @code{nil}, it defaults to the selected window.  If @var{string} is
3305 @code{nil}, @var{position} specifies a position in the current buffer;
3306 otherwise, @var{string} should be a string, and @var{position}
3307 specifies a position in that string.
3308 @end defun
3310 @cindex font spec
3311   A font spec is a Lisp object that contains a set of specifications
3312 that can be used to find a font.  More than one font may match the
3313 specifications in a font spec.
3315 @defun font-spec &rest arguments
3316 Return a new font spec using the specifications in @var{arguments},
3317 which should come in @code{property}-@code{value} pairs.  The possible
3318 specifications are as follows:
3320 @table @code
3321 @item :name
3322 The font name (a string), in either XLFD, Fontconfig, or GTK format.
3323 @xref{Fonts,,, emacs, The GNU Emacs Manual}.
3325 @item :family
3326 @itemx :foundry
3327 @itemx :weight
3328 @itemx :slant
3329 @itemx :width
3330 These have the same meanings as the face attributes of the same name.
3331 @xref{Face Attributes}.
3333 @item :size
3334 The font size---either a non-negative integer that specifies the pixel
3335 size, or a floating-point number that specifies the point size.
3337 @item :adstyle
3338 Additional typographic style information for the font, such as
3339 @samp{sans}.  The value should be a string or a symbol.
3341 @cindex font registry
3342 @item :registry
3343 The charset registry and encoding of the font, such as
3344 @samp{iso8859-1}.  The value should be a string or a symbol.
3346 @item :script
3347 The script that the font must support (a symbol).
3349 @item :otf
3350 @cindex OpenType font
3351 The font must be an OpenType font that supports these OpenType
3352 features, provided Emacs is compiled with a library, such as
3353 @samp{libotf} on GNU/Linux, that supports complex text layout for
3354 scripts which need that.  The value must be a list of the form
3356 @smallexample
3357 @code{(@var{script-tag} @var{langsys-tag} @var{gsub} @var{gpos})}
3358 @end smallexample
3360 where @var{script-tag} is the OpenType script tag symbol;
3361 @var{langsys-tag} is the OpenType language system tag symbol, or
3362 @code{nil} to use the default language system; @code{gsub} is a list
3363 of OpenType GSUB feature tag symbols, or @code{nil} if none is
3364 required; and @code{gpos} is a list of OpenType GPOS feature tag
3365 symbols, or @code{nil} if none is required.  If @code{gsub} or
3366 @code{gpos} is a list, a @code{nil} element in that list means that
3367 the font must not match any of the remaining tag symbols.  The
3368 @code{gpos} element may be omitted.
3369 @end table
3370 @end defun
3372 @defun font-put font-spec property value
3373 Set the font property @var{property} in the font-spec @var{font-spec}
3374 to @var{value}.
3375 @end defun
3377 @cindex font entity
3378   A font entity is a reference to a font that need not be open.  Its
3379 properties are intermediate between a font object and a font spec:
3380 like a font object, and unlike a font spec, it refers to a single,
3381 specific font.  Unlike a font object, creating a font entity does not
3382 load the contents of that font into computer memory.  Emacs may open
3383 multiple font objects of different sizes from a single font entity
3384 referring to a scalable font.
3386 @defun find-font font-spec &optional frame
3387 This function returns a font entity that best matches the font spec
3388 @var{font-spec} on frame @var{frame}.  If @var{frame} is @code{nil},
3389 it defaults to the selected frame.
3390 @end defun
3392 @defun list-fonts font-spec &optional frame num prefer
3393 This function returns a list of all font entities that match the font
3394 spec @var{font-spec}.
3396 The optional argument @var{frame}, if non-@code{nil}, specifies the
3397 frame on which the fonts are to be displayed.  The optional argument
3398 @var{num}, if non-@code{nil}, should be an integer that specifies the
3399 maximum length of the returned list.  The optional argument
3400 @var{prefer}, if non-@code{nil}, should be another font spec, which is
3401 used to control the order of the returned list; the returned font
3402 entities are sorted in order of decreasing ``closeness'' to that font
3403 spec.
3404 @end defun
3406   If you call @code{set-face-attribute} and pass a font spec, font
3407 entity, or font name string as the value of the @code{:font}
3408 attribute, Emacs opens the best ``matching'' font that is available
3409 for display.  It then stores the corresponding font object as the
3410 actual value of the @code{:font} attribute for that face.
3412   The following functions can be used to obtain information about a
3413 font.  For these functions, the @var{font} argument can be a font
3414 object, a font entity, or a font spec.
3416 @defun font-get font property
3417 This function returns the value of the font property @var{property}
3418 for @var{font}.
3420 If @var{font} is a font spec and the font spec does not specify
3421 @var{property}, the return value is @code{nil}.  If @var{font} is a
3422 font object or font entity, the value for the @var{:script} property
3423 may be a list of scripts supported by the font.
3424 @end defun
3426 @defun font-face-attributes font &optional frame
3427 This function returns a list of face attributes corresponding to
3428 @var{font}.  The optional argument @var{frame} specifies the frame on
3429 which the font is to be displayed.  If it is @code{nil}, the selected
3430 frame is used.  The return value has the form
3432 @smallexample
3433 (:family @var{family} :height @var{height} :weight @var{weight}
3434    :slant @var{slant} :width @var{width})
3435 @end smallexample
3437 where the values of @var{family}, @var{height}, @var{weight},
3438 @var{slant}, and @var{width} are face attribute values.  Some of these
3439 key-attribute pairs may be omitted from the list if they are not
3440 specified by @var{font}.
3441 @end defun
3443 @defun font-xlfd-name font &optional fold-wildcards
3444 This function returns the XLFD (X Logical Font Descriptor), a string,
3445 matching @var{font}.  @xref{Fonts,,, emacs, The GNU Emacs Manual}, for
3446 information about XLFDs.  If the name is too long for an XLFD (which
3447 can contain at most 255 characters), the function returns @code{nil}.
3449 If the optional argument @var{fold-wildcards} is non-@code{nil},
3450 consecutive wildcards in the XLFD are folded into one.
3451 @end defun
3453 The following two functions return important information about a font.
3455 @defun font-info name &optional frame
3456 This function returns information about a font specified by its
3457 @var{name}, a string, as it is used on @var{frame}.  If @var{frame} is
3458 omitted or @code{nil}, it defaults to the selected frame.
3460 The value returned by the function is a vector of the form
3461 @code{[@var{opened-name} @var{full-name} @var{size} @var{height}
3462 @var{baseline-offset} @var{relative-compose} @var{default-ascent}
3463 @var{max-width} @var{ascent} @var{descent} @var{space-width}
3464 @var{average-width} @var{filename} @var{capability}]}.  Here's the
3465 description of each components of this vector:
3467 @table @var
3468 @item opened-name
3469 The name used to open the font, a string.
3471 @item full-name
3472 The full name of the font, a string.
3474 @item size
3475 The pixel size of the font.
3477 @item height
3478 The height of the font in pixels.
3480 @item baseline-offset
3481 The offset in pixels from the @acronym{ASCII} baseline, positive
3482 upward.
3484 @item relative-compose
3485 @itemx default-ascent
3486 Numbers controlling how to compose characters.
3488 @item ascent
3489 @itemx descent
3490 The ascent and descent of this font.  The sum of these two numbers
3491 should be equal to the value of @var{height} above.
3493 @item space-width
3494 The width, in pixels, of the font's space character.
3496 @item average-width
3497 The average width of the font characters.  If this is zero, Emacs uses
3498 the value of @var{space-width} instead, when it calculates text layout
3499 on display.
3501 @item filename
3502 The file name of the font as a string.  This can be @code{nil} if the
3503 font back-end does not provide a way to find out the font's file name.
3505 @item capability
3506 A list whose first element is a symbol representing the font type, one
3507 of @code{x}, @code{opentype}, @code{truetype}, @code{type1},
3508 @code{pcf}, or @code{bdf}.  For OpenType fonts, the list includes 2
3509 additional elements describing the @sc{gsub} and @sc{gpos} features
3510 supported by the font.  Each of these elements is a list of the form
3511 @code{((@var{script} (@var{langsys} @var{feature} @dots{}) @dots{})
3512 @dots{})}, where @var{script} is a symbol representing an OpenType
3513 script tag, @var{langsys} is a symbol representing an OpenType langsys
3514 tag (or @code{nil}, which stands for the default langsys), and each
3515 @var{feature} is a symbol representing an OpenType feature tag.
3516 @end table
3517 @end defun
3519 @defun query-font font-object
3520 This function returns information about a @var{font-object}.  (This is
3521 in contrast to @code{font-info}, which takes the font name, a string,
3522 as its argument.)
3524 The value returned by the function is a vector of the form
3525 @code{[@var{name} @var{filename} @var{pixel-size} @var{max-width}
3526 @var{ascent} @var{descent} @var{space-width} @var{average-width}
3527 @var{capability}]}.  Here's the description of each components of this
3528 vector:
3530 @table @var
3531 @item name
3532 The font name, a string.
3534 @item filename
3535 The file name of the font as a string.  This can be @code{nil} if the
3536 font back-end does not provide a way to find out the font's file name.
3538 @item pixel-size
3539 The pixel size of the font used to open the font.
3541 @item max-width
3542 The maximum advance width of the font.
3544 @item ascent
3545 @itemx descent
3546 The ascent and descent of this font.  The sum of these two numbers
3547 gives the font height.
3549 @item space-width
3550 The width, in pixels, of the font's space character.
3552 @item average-width
3553 The average width of the font characters.  If this is zero, Emacs uses
3554 the value of @var{space-width} instead, when it calculates text layout
3555 on display.
3557 @item capability
3558 A list whose first element is a symbol representing the font type, one
3559 of @code{x}, @code{opentype}, @code{truetype}, @code{type1},
3560 @code{pcf}, or @code{bdf}.  For OpenType fonts, the list includes 2
3561 additional elements describing the @sc{gsub} and @sc{gpos} features
3562 supported by the font.  Each of these elements is a list of the form
3563 @code{((@var{script} (@var{langsys} @var{feature} @dots{}) @dots{})
3564 @dots{})}, where @var{script} is a symbol representing an OpenType
3565 script tag, @var{langsys} is a symbol representing an OpenType langsys
3566 tag (or @code{nil}, which stands for the default langsys), and each
3567 @var{feature} is a symbol representing an OpenType feature tag.
3568 @end table
3569 @end defun
3571 @node Fringes
3572 @section Fringes
3573 @cindex fringes
3575   On graphical displays, Emacs draws @dfn{fringes} next to each
3576 window: thin vertical strips down the sides which can display bitmaps
3577 indicating truncation, continuation, horizontal scrolling, and so on.
3579 @menu
3580 * Fringe Size/Pos::     Specifying where to put the window fringes.
3581 * Fringe Indicators::   Displaying indicator icons in the window fringes.
3582 * Fringe Cursors::      Displaying cursors in the right fringe.
3583 * Fringe Bitmaps::      Specifying bitmaps for fringe indicators.
3584 * Customizing Bitmaps:: Specifying your own bitmaps to use in the fringes.
3585 * Overlay Arrow::       Display of an arrow to indicate position.
3586 @end menu
3588 @node Fringe Size/Pos
3589 @subsection Fringe Size and Position
3591   The following buffer-local variables control the position and width
3592 of fringes in windows showing that buffer.
3594 @defvar fringes-outside-margins
3595 The fringes normally appear between the display margins and the window
3596 text.  If the value is non-@code{nil}, they appear outside the display
3597 margins.  @xref{Display Margins}.
3598 @end defvar
3600 @defvar left-fringe-width
3601 This variable, if non-@code{nil}, specifies the width of the left
3602 fringe in pixels.  A value of @code{nil} means to use the left fringe
3603 width from the window's frame.
3604 @end defvar
3606 @defvar right-fringe-width
3607 This variable, if non-@code{nil}, specifies the width of the right
3608 fringe in pixels.  A value of @code{nil} means to use the right fringe
3609 width from the window's frame.
3610 @end defvar
3612   Any buffer which does not specify values for these variables uses
3613 the values specified by the @code{left-fringe} and @code{right-fringe}
3614 frame parameters (@pxref{Layout Parameters}).
3616   The above variables actually take effect via the function
3617 @code{set-window-buffer} (@pxref{Buffers and Windows}), which calls
3618 @code{set-window-fringes} as a subroutine.  If you change one of these
3619 variables, the fringe display is not updated in existing windows
3620 showing the buffer, unless you call @code{set-window-buffer} again in
3621 each affected window.  You can also use @code{set-window-fringes} to
3622 control the fringe display in individual windows.
3624 @defun set-window-fringes window left &optional right outside-margins
3625 This function sets the fringe widths of window @var{window}.
3626 If @var{window} is @code{nil}, the selected window is used.
3628 The argument @var{left} specifies the width in pixels of the left
3629 fringe, and likewise @var{right} for the right fringe.  A value of
3630 @code{nil} for either one stands for the default width.  If
3631 @var{outside-margins} is non-@code{nil}, that specifies that fringes
3632 should appear outside of the display margins.
3633 @end defun
3635 @defun window-fringes &optional window
3636 This function returns information about the fringes of a window
3637 @var{window}.  If @var{window} is omitted or @code{nil}, the selected
3638 window is used.  The value has the form @code{(@var{left-width}
3639 @var{right-width} @var{outside-margins})}.
3640 @end defun
3643 @node Fringe Indicators
3644 @subsection Fringe Indicators
3645 @cindex fringe indicators
3646 @cindex indicators, fringe
3648   @dfn{Fringe indicators} are tiny icons displayed in the window
3649 fringe to indicate truncated or continued lines, buffer boundaries,
3650 etc.
3652 @defopt indicate-empty-lines
3653 @cindex fringes, and empty line indication
3654 @cindex empty lines, indicating
3655 When this is non-@code{nil}, Emacs displays a special glyph in the
3656 fringe of each empty line at the end of the buffer, on graphical
3657 displays.  @xref{Fringes}.  This variable is automatically
3658 buffer-local in every buffer.
3659 @end defopt
3661 @defopt indicate-buffer-boundaries
3662 @cindex buffer boundaries, indicating
3663 This buffer-local variable controls how the buffer boundaries and
3664 window scrolling are indicated in the window fringes.
3666 Emacs can indicate the buffer boundaries---that is, the first and last
3667 line in the buffer---with angle icons when they appear on the screen.
3668 In addition, Emacs can display an up-arrow in the fringe to show
3669 that there is text above the screen, and a down-arrow to show
3670 there is text below the screen.
3672 There are three kinds of basic values:
3674 @table @asis
3675 @item @code{nil}
3676 Don't display any of these fringe icons.
3677 @item @code{left}
3678 Display the angle icons and arrows in the left fringe.
3679 @item @code{right}
3680 Display the angle icons and arrows in the right fringe.
3681 @item any non-alist
3682 Display the angle icons in the left fringe
3683 and don't display the arrows.
3684 @end table
3686 Otherwise the value should be an alist that specifies which fringe
3687 indicators to display and where.  Each element of the alist should
3688 have the form @code{(@var{indicator} . @var{position})}.  Here,
3689 @var{indicator} is one of @code{top}, @code{bottom}, @code{up},
3690 @code{down}, and @code{t} (which covers all the icons not yet
3691 specified), while @var{position} is one of @code{left}, @code{right}
3692 and @code{nil}.
3694 For example, @code{((top . left) (t . right))} places the top angle
3695 bitmap in left fringe, and the bottom angle bitmap as well as both
3696 arrow bitmaps in right fringe.  To show the angle bitmaps in the left
3697 fringe, and no arrow bitmaps, use @code{((top .  left) (bottom . left))}.
3698 @end defopt
3700 @defvar fringe-indicator-alist
3701 This buffer-local variable specifies the mapping from logical fringe
3702 indicators to the actual bitmaps displayed in the window fringes.  The
3703 value is an alist of elements @code{(@var{indicator}
3704 . @var{bitmaps})}, where @var{indicator} specifies a logical indicator
3705 type and @var{bitmaps} specifies the fringe bitmaps to use for that
3706 indicator.
3708   Each @var{indicator} should be one of the following symbols:
3710 @table @asis
3711 @item @code{truncation}, @code{continuation}.
3712 Used for truncation and continuation lines.
3714 @item @code{up}, @code{down}, @code{top}, @code{bottom}, @code{top-bottom}
3715 Used when @code{indicate-buffer-boundaries} is non-@code{nil}:
3716 @code{up} and @code{down} indicate a buffer boundary lying above or
3717 below the window edge; @code{top} and @code{bottom} indicate the
3718 topmost and bottommost buffer text line; and @code{top-bottom}
3719 indicates where there is just one line of text in the buffer.
3721 @item @code{empty-line}
3722 Used to indicate empty lines when @code{indicate-empty-lines} is
3723 non-@code{nil}.
3725 @item @code{overlay-arrow}
3726 Used for overlay arrows (@pxref{Overlay Arrow}).
3727 @c Is this used anywhere?
3728 @c @item Unknown bitmap indicator:
3729 @c @code{unknown}.
3730 @end table
3732   Each @var{bitmaps} value may be a list of symbols @code{(@var{left}
3733 @var{right} [@var{left1} @var{right1}])}.  The @var{left} and
3734 @var{right} symbols specify the bitmaps shown in the left and/or right
3735 fringe, for the specific indicator.  @var{left1} and @var{right1} are
3736 specific to the @code{bottom} and @code{top-bottom} indicators, and
3737 are used to indicate that the last text line has no final newline.
3738 Alternatively, @var{bitmaps} may be a single symbol which is used in
3739 both left and right fringes.
3741   @xref{Fringe Bitmaps}, for a list of standard bitmap symbols and how
3742 to define your own.  In addition, @code{nil} represents the empty
3743 bitmap (i.e., an indicator that is not shown).
3745   When @code{fringe-indicator-alist} has a buffer-local value, and
3746 there is no bitmap defined for a logical indicator, or the bitmap is
3747 @code{t}, the corresponding value from the default value of
3748 @code{fringe-indicator-alist} is used.
3749 @end defvar
3751 @node Fringe Cursors
3752 @subsection Fringe Cursors
3753 @cindex fringe cursors
3754 @cindex cursor, fringe
3756   When a line is exactly as wide as the window, Emacs displays the
3757 cursor in the right fringe instead of using two lines.  Different
3758 bitmaps are used to represent the cursor in the fringe depending on
3759 the current buffer's cursor type.
3761 @defopt overflow-newline-into-fringe
3762 If this is non-@code{nil}, lines exactly as wide as the window (not
3763 counting the final newline character) are not continued.  Instead,
3764 when point is at the end of the line, the cursor appears in the right
3765 fringe.
3766 @end defopt
3768 @defvar fringe-cursor-alist
3769 This variable specifies the mapping from logical cursor type to the
3770 actual fringe bitmaps displayed in the right fringe.  The value is an
3771 alist where each element has the form @code{(@var{cursor-type}
3772 . @var{bitmap})}, which means to use the fringe bitmap @var{bitmap} to
3773 display cursors of type @var{cursor-type}.
3775 Each @var{cursor-type} should be one of @code{box}, @code{hollow},
3776 @code{bar}, @code{hbar}, or @code{hollow-small}.  The first four have
3777 the same meanings as in the @code{cursor-type} frame parameter
3778 (@pxref{Cursor Parameters}).  The @code{hollow-small} type is used
3779 instead of @code{hollow} when the normal @code{hollow-rectangle}
3780 bitmap is too tall to fit on a specific display line.
3782 Each @var{bitmap} should be a symbol specifying the fringe bitmap to
3783 be displayed for that logical cursor type.
3784 @iftex
3785 See the next subsection for details.
3786 @end iftex
3787 @ifnottex
3788 @xref{Fringe Bitmaps}.
3789 @end ifnottex
3791 @c FIXME: I can't find the fringes-indicator-alist variable.  Maybe
3792 @c it should be fringe-indicator-alist or fringe-cursor-alist?  --xfq
3793 When @code{fringe-cursor-alist} has a buffer-local value, and there is
3794 no bitmap defined for a cursor type, the corresponding value from the
3795 default value of @code{fringes-indicator-alist} is used.
3796 @end defvar
3798 @node Fringe Bitmaps
3799 @subsection Fringe Bitmaps
3800 @cindex fringe bitmaps
3801 @cindex bitmaps, fringe
3803   The @dfn{fringe bitmaps} are the actual bitmaps which represent the
3804 logical fringe indicators for truncated or continued lines, buffer
3805 boundaries, overlay arrows, etc.  Each bitmap is represented by a
3806 symbol.
3807 @iftex
3808 These symbols are referred to by the variables
3809 @code{fringe-indicator-alist} and @code{fringe-cursor-alist},
3810 described in the previous subsections.
3811 @end iftex
3812 @ifnottex
3813 These symbols are referred to by the variable
3814 @code{fringe-indicator-alist}, which maps fringe indicators to bitmaps
3815 (@pxref{Fringe Indicators}), and the variable
3816 @code{fringe-cursor-alist}, which maps fringe cursors to bitmaps
3817 (@pxref{Fringe Cursors}).
3818 @end ifnottex
3820   Lisp programs can also directly display a bitmap in the left or
3821 right fringe, by using a @code{display} property for one of the
3822 characters appearing in the line (@pxref{Other Display Specs}).  Such
3823 a display specification has the form
3825 @example
3826 (@var{fringe} @var{bitmap} [@var{face}])
3827 @end example
3829 @noindent
3830 @var{fringe} is either the symbol @code{left-fringe} or
3831 @code{right-fringe}.  @var{bitmap} is a symbol identifying the bitmap
3832 to display.  The optional @var{face} names a face whose foreground
3833 color is used to display the bitmap; this face is automatically merged
3834 with the @code{fringe} face.
3836   Here is a list of the standard fringe bitmaps defined in Emacs, and
3837 how they are currently used in Emacs (via
3838 @code{fringe-indicator-alist} and @code{fringe-cursor-alist}):
3840 @table @asis
3841 @item @code{left-arrow}, @code{right-arrow}
3842 Used to indicate truncated lines.
3844 @item @code{left-curly-arrow}, @code{right-curly-arrow}
3845 Used to indicate continued lines.
3847 @item @code{right-triangle}, @code{left-triangle}
3848 The former is used by overlay arrows.  The latter is unused.
3850 @item @code{up-arrow}, @code{down-arrow}, @code{top-left-angle} @code{top-right-angle}
3851 @itemx @code{bottom-left-angle}, @code{bottom-right-angle}
3852 @itemx @code{top-right-angle}, @code{top-left-angle}
3853 @itemx @code{left-bracket}, @code{right-bracket}, @code{top-right-angle}, @code{top-left-angle}
3854 Used to indicate buffer boundaries.
3856 @item @code{filled-rectangle}, @code{hollow-rectangle}
3857 @itemx @code{filled-square}, @code{hollow-square}
3858 @itemx @code{vertical-bar}, @code{horizontal-bar}
3859 Used for different types of fringe cursors.
3861 @item @code{empty-line}, @code{exclamation-mark}, @code{question-mark}, @code{exclamation-mark}
3862 Not used by core Emacs features.
3863 @end table
3865 @noindent
3866 The next subsection describes how to define your own fringe bitmaps.
3868 @defun fringe-bitmaps-at-pos &optional pos window
3869 This function returns the fringe bitmaps of the display line
3870 containing position @var{pos} in window @var{window}.  The return
3871 value has the form @code{(@var{left} @var{right} @var{ov})}, where @var{left}
3872 is the symbol for the fringe bitmap in the left fringe (or @code{nil}
3873 if no bitmap), @var{right} is similar for the right fringe, and @var{ov}
3874 is non-@code{nil} if there is an overlay arrow in the left fringe.
3876 The value is @code{nil} if @var{pos} is not visible in @var{window}.
3877 If @var{window} is @code{nil}, that stands for the selected window.
3878 If @var{pos} is @code{nil}, that stands for the value of point in
3879 @var{window}.
3880 @end defun
3882 @node Customizing Bitmaps
3883 @subsection Customizing Fringe Bitmaps
3884 @cindex fringe bitmaps, customizing
3886 @defun define-fringe-bitmap bitmap bits &optional height width align
3887 This function defines the symbol @var{bitmap} as a new fringe bitmap,
3888 or replaces an existing bitmap with that name.
3890 The argument @var{bits} specifies the image to use.  It should be
3891 either a string or a vector of integers, where each element (an
3892 integer) corresponds to one row of the bitmap.  Each bit of an integer
3893 corresponds to one pixel of the bitmap, where the low bit corresponds
3894 to the rightmost pixel of the bitmap.
3896 The height is normally the length of @var{bits}.  However, you
3897 can specify a different height with non-@code{nil} @var{height}.  The width
3898 is normally 8, but you can specify a different width with non-@code{nil}
3899 @var{width}.  The width must be an integer between 1 and 16.
3901 The argument @var{align} specifies the positioning of the bitmap
3902 relative to the range of rows where it is used; the default is to
3903 center the bitmap.  The allowed values are @code{top}, @code{center},
3904 or @code{bottom}.
3906 The @var{align} argument may also be a list @code{(@var{align}
3907 @var{periodic})} where @var{align} is interpreted as described above.
3908 If @var{periodic} is non-@code{nil}, it specifies that the rows in
3909 @code{bits} should be repeated enough times to reach the specified
3910 height.
3911 @end defun
3913 @defun destroy-fringe-bitmap bitmap
3914 This function destroy the fringe bitmap identified by @var{bitmap}.
3915 If @var{bitmap} identifies a standard fringe bitmap, it actually
3916 restores the standard definition of that bitmap, instead of
3917 eliminating it entirely.
3918 @end defun
3920 @defun set-fringe-bitmap-face bitmap &optional face
3921 This sets the face for the fringe bitmap @var{bitmap} to @var{face}.
3922 If @var{face} is @code{nil}, it selects the @code{fringe} face.  The
3923 bitmap's face controls the color to draw it in.
3925 @var{face} is merged with the @code{fringe} face, so normally
3926 @var{face} should specify only the foreground color.
3927 @end defun
3929 @node Overlay Arrow
3930 @subsection The Overlay Arrow
3931 @c @cindex overlay arrow  Duplicates variable names
3933   The @dfn{overlay arrow} is useful for directing the user's attention
3934 to a particular line in a buffer.  For example, in the modes used for
3935 interface to debuggers, the overlay arrow indicates the line of code
3936 about to be executed.  This feature has nothing to do with
3937 @dfn{overlays} (@pxref{Overlays}).
3939 @defvar overlay-arrow-string
3940 This variable holds the string to display to call attention to a
3941 particular line, or @code{nil} if the arrow feature is not in use.
3942 On a graphical display the contents of the string are ignored; instead a
3943 glyph is displayed in the fringe area to the left of the display area.
3944 @end defvar
3946 @defvar overlay-arrow-position
3947 This variable holds a marker that indicates where to display the overlay
3948 arrow.  It should point at the beginning of a line.  On a non-graphical
3949 display the arrow text
3950 appears at the beginning of that line, overlaying any text that would
3951 otherwise appear.  Since the arrow is usually short, and the line
3952 usually begins with indentation, normally nothing significant is
3953 overwritten.
3955 The overlay-arrow string is displayed in any given buffer if the value
3956 of @code{overlay-arrow-position} in that buffer points into that
3957 buffer.  Thus, it is possible to display multiple overlay arrow strings
3958 by creating buffer-local bindings of @code{overlay-arrow-position}.
3959 However, it is usually cleaner to use
3960 @code{overlay-arrow-variable-list} to achieve this result.
3961 @c !!! overlay-arrow-position: but the overlay string may remain in the display
3962 @c of some other buffer until an update is required.  This should be fixed
3963 @c now.  Is it?
3964 @end defvar
3966   You can do a similar job by creating an overlay with a
3967 @code{before-string} property.  @xref{Overlay Properties}.
3969   You can define multiple overlay arrows via the variable
3970 @code{overlay-arrow-variable-list}.
3972 @defvar overlay-arrow-variable-list
3973 This variable's value is a list of variables, each of which specifies
3974 the position of an overlay arrow.  The variable
3975 @code{overlay-arrow-position} has its normal meaning because it is on
3976 this list.
3977 @end defvar
3979 Each variable on this list can have properties
3980 @code{overlay-arrow-string} and @code{overlay-arrow-bitmap} that
3981 specify an overlay arrow string (for text terminals) or fringe bitmap
3982 (for graphical terminals) to display at the corresponding overlay
3983 arrow position.  If either property is not set, the default
3984 @code{overlay-arrow-string} or @code{overlay-arrow} fringe indicator
3985 is used.
3988 @node Scroll Bars
3989 @section Scroll Bars
3990 @cindex scroll bars
3992 Normally the frame parameter @code{vertical-scroll-bars} controls
3993 whether the windows in the frame have vertical scroll bars, and whether
3994 they are on the left or right.  The frame parameter
3995 @code{scroll-bar-width} specifies how wide they are (@code{nil} meaning
3996 the default).
3998    The frame parameter @code{horizontal-scroll-bars} controls whether
3999 the windows in the frame have horizontal scroll bars.  The frame
4000 parameter @code{scroll-bar-height} specifies how high they are
4001 (@code{nil} meaning the default).  @xref{Layout Parameters}.
4003 @vindex horizontal-scroll-bars-available-p
4004    Horizontal scroll bars are not available on all platforms.  The
4005 function @code{horizontal-scroll-bars-available-p} which takes no
4006 argument returns non-@code{nil} if they are available on your system.
4008    The following three functions take as argument a live frame which
4009 defaults to the selected one.
4011 @defun frame-current-scroll-bars &optional frame
4012 This function reports the scroll bar types for frame @var{frame}.  The
4013 value is a cons cell @code{(@var{vertical-type} .@:
4014 @var{horizontal-type})}, where @var{vertical-type} is either
4015 @code{left}, @code{right}, or @code{nil} (which means no vertical scroll
4016 bar.)  @var{horizontal-type} is either @code{bottom} or @code{nil}
4017 (which means no horizontal scroll bar).
4018 @end defun
4020 @defun frame-scroll-bar-width &optional Lisp_Object &optional frame
4021 This function returns the width of vertical scroll bars of @var{frame}
4022 in pixels.
4023 @end defun
4025 @defun frame-scroll-bar-height &optional Lisp_Object &optional frame
4026 This function returns the height of horizontal scroll bars of
4027 @var{frame} in pixels.
4028 @end defun
4030 You can override the frame specific settings for individual windows by
4031 using the following function:
4033 @defun set-window-scroll-bars window &optional width vertical-type height horizontal-type
4034 This function sets the width and/or height and the types of scroll bars
4035 for window @var{window}.
4037 @var{width} specifies the width of the vertical scroll bar in pixels
4038 (@code{nil} means use the width specified for the frame).
4039 @var{vertical-type} specifies whether to have a vertical scroll bar and,
4040 if so, where.  The possible values are @code{left}, @code{right},
4041 @code{t}, which means to use the frame's default, and @code{nil} for no
4042 vertical scroll bar.
4044 @var{height} specifies the height of the horizontal scroll bar in pixels
4045 (@code{nil} means use the height specified for the frame).
4046 @var{horizontal-type} specifies whether to have a horizontal scroll bar.
4047 The possible values are @code{bottom}, @code{t}, which means to use the
4048 frame's default, and @code{nil} for no horizontal scroll bar.
4050 If @var{window} is @code{nil}, the selected window is used.
4051 @end defun
4053 The following four functions take as argument a live window which
4054 defaults to the selected one.
4056 @defun window-scroll-bars &optional window
4057 This function returns a list of the form @code{(@var{width}
4058 @var{columns} @var{vertical-type} @var{height} @var{lines}
4059 @var{horizontal-type})}.
4061 The value @var{width} is the value that was specified for the width of
4062 the vertical scroll bar (which may be @code{nil}); @var{columns} is the
4063 (possibly rounded) number of columns that the vertical scroll bar
4064 actually occupies.
4066 The value @var{height} is the value that was specified for the height of
4067 the horizontal scroll bar (which may be @code{nil}); @var{lines} is the
4068 (possibly rounded) number of lines that the horizontally scroll bar
4069 actually occupies.
4070 @end defun
4072 @defun window-current-scroll-bars &optional window
4073 This function reports the scroll bar type for window @var{window}.  The
4074 value is a cons cell @code{(@var{vertical-type} .@:
4075 @var{horizontal-type})}.  Unlike @code{window-scroll-bars}, this reports
4076 the scroll bar type actually used, once frame defaults and
4077 @code{scroll-bar-mode} are taken into account.
4078 @end defun
4080 @defun window-scroll-bar-width &optional window
4081 This function returns the width in pixels of @var{window}'s vertical
4082 scrollbar.
4083 @end defun
4085 @defun window-scroll-bar-height &optional window
4086 This function returns the height in pixels of @var{window}'s horizontal
4087 scrollbar.
4088 @end defun
4090 If you don't specify these values for a window with
4091 @code{set-window-scroll-bars}, the buffer-local variables
4092 @code{vertical-scroll-bar}, @code{horizontal-scroll-bar},
4093 @code{scroll-bar-width} and @code{scroll-bar-height} in the buffer being
4094 displayed control the window's scroll bars.  The function
4095 @code{set-window-buffer} examines these variables.  If you change them
4096 in a buffer that is already visible in a window, you can make the window
4097 take note of the new values by calling @code{set-window-buffer}
4098 specifying the same buffer that is already displayed.
4100 You can control the appearance of scroll bars for a particular buffer by
4101 setting the following variables which automatically become buffer-local
4102 when set.
4104 @defvar vertical-scroll-bar
4105 This variable specifies the location of the vertical scroll bar.  The
4106 possible values are @code{left}, @code{right}, @code{t}, which means to
4107 use the frame's default, and @code{nil} for no scroll bar.
4108 @end defvar
4110 @defvar horizontal-scroll-bar
4111 This variable specifies the location of the horizontal scroll bar.  The
4112 possible values are @code{bottom}, @code{t}, which means to use the
4113 frame's default, and @code{nil} for no scroll bar.
4114 @end defvar
4116 @defvar scroll-bar-width
4117 This variable specifies the width of the buffer's vertical scroll bars,
4118 measured in pixels.  A value of @code{nil} means to use the value
4119 specified by the frame.
4120 @end defvar
4122 @defvar scroll-bar-height
4123 This variable specifies the height of the buffer's horizontal scroll
4124 bar, measured in pixels.  A value of @code{nil} means to use the value
4125 specified by the frame.
4126 @end defvar
4128 Finally you can toggle the display of scroll bars on all frames by
4129 customizing the variables @code{scroll-bar-mode} and
4130 @code{horizontal-scroll-bar-mode}.
4132 @defopt scroll-bar-mode
4133 This variable controls whether and where to put vertical scroll bars in
4134 all frames.  The possible values are @code{nil} for no scroll bars,
4135 @code{left} to put scroll bars on the left and @code{right} to put
4136 scroll bars on the right.
4137 @end defopt
4139 @defopt horizontal-scroll-bar-mode
4140 This variable controls whether to display horizontal scroll bars on all
4141 frames.
4142 @end defopt
4145 @node Window Dividers
4146 @section Window Dividers
4147 @cindex window dividers
4148 @cindex right dividers
4149 @cindex bottom dividers
4151 Window dividers are bars drawn between a frame's windows.  A ``right''
4152 divider is drawn between a window and any adjacent windows on the right.
4153 Its width (thickness) is specified by the frame parameter
4154 @code{right-divider-width}.  A ``bottom'' divider is drawn between a
4155 window and adjacent windows on the bottom or the echo area.  Its width
4156 is specified by the frame parameter @code{bottom-divider-width}.  In
4157 either case, specifying a width of zero means to not draw such dividers.
4158 @xref{Layout Parameters}.
4160    Technically, a right divider ``belongs'' to the window on its left,
4161 which means that its width contributes to the total width of that
4162 window.  A bottom divider ``belongs'' to the window above it, which
4163 means that its width contributes to the total height of that window.
4164 @xref{Window Sizes}.  When a window has both, a right and a bottom
4165 divider, the bottom divider ``prevails''.  This means that a bottom
4166 divider is drawn over the full total width of its window while the right
4167 divider ends above the bottom divider.
4169    Dividers can be dragged with the mouse and are therefore useful for
4170 adjusting the sizes of adjacent windows with the mouse.  They also serve
4171 to visually set apart adjacent windows when no scroll bars or mode lines
4172 are present.  The following three faces allow to customize the
4173 appearance of dividers:
4175 @table @code
4176 @item window-divider
4177 When a divider is less than three pixels wide, it is drawn solidly with
4178 the foreground of this face.  For larger dividers this face is used for
4179 the inner part only, excluding the first and last pixel.
4181 @item window-divider-first-pixel
4182 This is the face used for drawing the first pixel of a divider that is
4183 at least three pixels wide.  To obtain a solid appearance, set this to
4184 the same value used for the @code{window-divider} face.
4186 @item window-divider-last-pixel
4187 This is the face used for drawing the last pixel of a divider that is at
4188 least three pixels wide.  To obtain a solid appearance, set this to the
4189 same value used for the @code{window-divider} face.
4190 @end table
4192 You can get the sizes of the dividers of a specific window with the
4193 following two functions.
4195 @defun window-right-divider-width &optional window
4196 Return the width (thickness) in pixels of @var{window}'s right divider.
4197 @var{window} must be a live window and defaults to the selected one.
4198 The return value is always zero for a rightmost window.
4199 @end defun
4201 @defun window-bottom-divider-width &optional window
4202 Return the width (thickness) in pixels of @var{window}'s bottom divider.
4203 @var{window} must be a live window and defaults to the selected one.
4204 The return value is zero for the minibuffer window or a bottommost
4205 window on a minibuffer-less frame.
4206 @end defun
4209 @node Display Property
4210 @section The @code{display} Property
4211 @cindex display specification
4212 @kindex display @r{(text property)}
4214   The @code{display} text property (or overlay property) is used to
4215 insert images into text, and to control other aspects of how text
4216 displays.  The value of the @code{display} property should be a
4217 display specification, or a list or vector containing several display
4218 specifications.  Display specifications in the same @code{display}
4219 property value generally apply in parallel to the text they cover.
4221   If several sources (overlays and/or a text property) specify values
4222 for the @code{display} property, only one of the values takes effect,
4223 following the rules of @code{get-char-property}.  @xref{Examining
4224 Properties}.
4226   The rest of this section describes several kinds of
4227 display specifications and what they mean.
4229 @menu
4230 * Replacing Specs::      Display specs that replace the text.
4231 * Specified Space::      Displaying one space with a specified width.
4232 * Pixel Specification::  Specifying space width or height in pixels.
4233 * Other Display Specs::     Displaying an image; adjusting the height,
4234                               spacing, and other properties of text.
4235 * Display Margins::     Displaying text or images to the side of the main text.
4236 @end menu
4238 @node Replacing Specs
4239 @subsection Display Specs That Replace The Text
4241   Some kinds of display specifications specify something to display
4242 instead of the text that has the property.  These are called
4243 @dfn{replacing} display specifications.  Emacs does not allow the user
4244 to interactively move point into the middle of buffer text that is
4245 replaced in this way.
4247   If a list of display specifications includes more than one replacing
4248 display specification, the first overrides the rest.  Replacing
4249 display specifications make most other display specifications
4250 irrelevant, since those don't apply to the replacement.
4252   For replacing display specifications, ``the text that has the
4253 property'' means all the consecutive characters that have the same
4254 Lisp object as their @code{display} property; these characters are
4255 replaced as a single unit.  If two characters have different Lisp
4256 objects as their @code{display} properties (i.e., objects which are
4257 not @code{eq}), they are handled separately.
4259   Here is an example which illustrates this point.  A string serves as
4260 a replacing display specification, which replaces the text that has
4261 the property with the specified string (@pxref{Other Display Specs}).
4262 Consider the following function:
4264 @smallexample
4265 (defun foo ()
4266   (dotimes (i 5)
4267     (let ((string (concat "A"))
4268           (start (+ i i (point-min))))
4269       (put-text-property start (1+ start) 'display string)
4270       (put-text-property start (+ 2 start) 'display string))))
4271 @end smallexample
4273 @noindent
4274 This function gives each of the first ten characters in the buffer a
4275 @code{display} property which is a string @code{"A"}, but they don't
4276 all get the same string object.  The first two characters get the same
4277 string object, so they are replaced with one @samp{A}; the fact that
4278 the display property was assigned in two separate calls to
4279 @code{put-text-property} is irrelevant.  Similarly, the next two
4280 characters get a second string (@code{concat} creates a new string
4281 object), so they are replaced with one @samp{A}; and so on.  Thus, the
4282 ten characters appear as five A's.
4284 @node Specified Space
4285 @subsection Specified Spaces
4286 @cindex spaces, specified height or width
4287 @cindex variable-width spaces
4289   To display a space of specified width and/or height, use a display
4290 specification of the form @code{(space . @var{props})}, where
4291 @var{props} is a property list (a list of alternating properties and
4292 values).  You can put this property on one or more consecutive
4293 characters; a space of the specified height and width is displayed in
4294 place of @emph{all} of those characters.  These are the properties you
4295 can use in @var{props} to specify the weight of the space:
4297 @table @code
4298 @item :width @var{width}
4299 If @var{width} is a number, it specifies
4300 that the space width should be @var{width} times the normal character
4301 width.  @var{width} can also be a @dfn{pixel width} specification
4302 (@pxref{Pixel Specification}).
4304 @item :relative-width @var{factor}
4305 Specifies that the width of the stretch should be computed from the
4306 first character in the group of consecutive characters that have the
4307 same @code{display} property.  The space width is the width of that
4308 character, multiplied by @var{factor}.
4310 @item :align-to @var{hpos}
4311 Specifies that the space should be wide enough to reach @var{hpos}.
4312 If @var{hpos} is a number, it is measured in units of the normal
4313 character width.  @var{hpos} can also be a @dfn{pixel width}
4314 specification (@pxref{Pixel Specification}).
4315 @end table
4317   You should use one and only one of the above properties.  You can
4318 also specify the height of the space, with these properties:
4320 @table @code
4321 @item :height @var{height}
4322 Specifies the height of the space.
4323 If @var{height} is a number, it specifies
4324 that the space height should be @var{height} times the normal character
4325 height.  The @var{height} may also be a @dfn{pixel height} specification
4326 (@pxref{Pixel Specification}).
4328 @item :relative-height @var{factor}
4329 Specifies the height of the space, multiplying the ordinary height
4330 of the text having this display specification by @var{factor}.
4332 @item :ascent @var{ascent}
4333 If the value of @var{ascent} is a non-negative number no greater than
4334 100, it specifies that @var{ascent} percent of the height of the space
4335 should be considered as the ascent of the space---that is, the part
4336 above the baseline.  The ascent may also be specified in pixel units
4337 with a @dfn{pixel ascent} specification (@pxref{Pixel Specification}).
4339 @end table
4341   Don't use both @code{:height} and @code{:relative-height} together.
4343   The @code{:width} and @code{:align-to} properties are supported on
4344 non-graphic terminals, but the other space properties in this section
4345 are not.
4347   Note that space properties are treated as paragraph separators for
4348 the purposes of reordering bidirectional text for display.
4349 @xref{Bidirectional Display}, for the details.
4351 @node Pixel Specification
4352 @subsection Pixel Specification for Spaces
4353 @cindex spaces, pixel specification
4355   The value of the @code{:width}, @code{:align-to}, @code{:height},
4356 and @code{:ascent} properties can be a special kind of expression that
4357 is evaluated during redisplay.  The result of the evaluation is used
4358 as an absolute number of pixels.
4360   The following expressions are supported:
4362 @smallexample
4363 @group
4364   @var{expr} ::= @var{num} | (@var{num}) | @var{unit} | @var{elem} | @var{pos} | @var{image} | @var{form}
4365   @var{num}  ::= @var{integer} | @var{float} | @var{symbol}
4366   @var{unit} ::= in | mm | cm | width | height
4367 @end group
4368 @group
4369   @var{elem} ::= left-fringe | right-fringe | left-margin | right-margin
4370         |  scroll-bar | text
4371   @var{pos}  ::= left | center | right
4372   @var{form} ::= (@var{num} . @var{expr}) | (@var{op} @var{expr} ...)
4373   @var{op}   ::= + | -
4374 @end group
4375 @end smallexample
4377   The form @var{num} specifies a fraction of the default frame font
4378 height or width.  The form @code{(@var{num})} specifies an absolute
4379 number of pixels.  If @var{num} is a symbol, @var{symbol}, its
4380 buffer-local variable binding is used.
4382   The @code{in}, @code{mm}, and @code{cm} units specify the number of
4383 pixels per inch, millimeter, and centimeter, respectively.  The
4384 @code{width} and @code{height} units correspond to the default width
4385 and height of the current face.  An image specification @code{image}
4386 corresponds to the width or height of the image.
4388   The elements @code{left-fringe}, @code{right-fringe},
4389 @code{left-margin}, @code{right-margin}, @code{scroll-bar}, and
4390 @code{text} specify to the width of the corresponding area of the
4391 window.
4393   The @code{left}, @code{center}, and @code{right} positions can be
4394 used with @code{:align-to} to specify a position relative to the left
4395 edge, center, or right edge of the text area.
4397   Any of the above window elements (except @code{text}) can also be
4398 used with @code{:align-to} to specify that the position is relative to
4399 the left edge of the given area.  Once the base offset for a relative
4400 position has been set (by the first occurrence of one of these
4401 symbols), further occurrences of these symbols are interpreted as the
4402 width of the specified area.  For example, to align to the center of
4403 the left-margin, use
4405 @example
4406 :align-to (+ left-margin (0.5 . left-margin))
4407 @end example
4409   If no specific base offset is set for alignment, it is always relative
4410 to the left edge of the text area.  For example, @samp{:align-to 0} in a
4411 header-line aligns with the first text column in the text area.
4413   A value of the form @code{(@var{num} . @var{expr})} stands for the
4414 product of the values of @var{num} and @var{expr}.  For example,
4415 @code{(2 . in)} specifies a width of 2 inches, while @code{(0.5 .
4416 @var{image})} specifies half the width (or height) of the specified
4417 image.
4419   The form @code{(+ @var{expr} ...)} adds up the value of the
4420 expressions.  The form @code{(- @var{expr} ...)} negates or subtracts
4421 the value of the expressions.
4423 @node Other Display Specs
4424 @subsection Other Display Specifications
4426   Here are the other sorts of display specifications that you can use
4427 in the @code{display} text property.
4429 @table @code
4430 @item @var{string}
4431 Display @var{string} instead of the text that has this property.
4433 Recursive display specifications are not supported---@var{string}'s
4434 @code{display} properties, if any, are not used.
4436 @item (image . @var{image-props})
4437 This kind of display specification is an image descriptor (@pxref{Images}).
4438 When used as a display specification, it means to display the image
4439 instead of the text that has the display specification.
4441 @item (slice @var{x} @var{y} @var{width} @var{height})
4442 This specification together with @code{image} specifies a @dfn{slice}
4443 (a partial area) of the image to display.  The elements @var{y} and
4444 @var{x} specify the top left corner of the slice, within the image;
4445 @var{width} and @var{height} specify the width and height of the
4446 slice.  Integers are numbers of pixels.  A floating-point number
4447 in the range 0.0--1.0 stands for that fraction of the width or height
4448 of the entire image.
4450 @item ((margin nil) @var{string})
4451 A display specification of this form means to display @var{string}
4452 instead of the text that has the display specification, at the same
4453 position as that text.  It is equivalent to using just @var{string},
4454 but it is done as a special case of marginal display (@pxref{Display
4455 Margins}).
4457 @item (left-fringe @var{bitmap} @r{[}@var{face}@r{]})
4458 @itemx (right-fringe @var{bitmap} @r{[}@var{face}@r{]})
4459 This display specification on any character of a line of text causes
4460 the specified @var{bitmap} be displayed in the left or right fringes
4461 for that line, instead of the characters that have the display
4462 specification.  The optional @var{face} specifies the colors to be
4463 used for the bitmap.  @xref{Fringe Bitmaps}, for the details.
4465 @item (space-width @var{factor})
4466 This display specification affects all the space characters within the
4467 text that has the specification.  It displays all of these spaces
4468 @var{factor} times as wide as normal.  The element @var{factor} should
4469 be an integer or float.  Characters other than spaces are not affected
4470 at all; in particular, this has no effect on tab characters.
4472 @item (height @var{height})
4473 This display specification makes the text taller or shorter.
4474 Here are the possibilities for @var{height}:
4476 @table @asis
4477 @item @code{(+ @var{n})}
4478 @c FIXME: Add an index for "step"?  --xfq
4479 This means to use a font that is @var{n} steps larger.  A ``step'' is
4480 defined by the set of available fonts---specifically, those that match
4481 what was otherwise specified for this text, in all attributes except
4482 height.  Each size for which a suitable font is available counts as
4483 another step.  @var{n} should be an integer.
4485 @item @code{(- @var{n})}
4486 This means to use a font that is @var{n} steps smaller.
4488 @item a number, @var{factor}
4489 A number, @var{factor}, means to use a font that is @var{factor} times
4490 as tall as the default font.
4492 @item a symbol, @var{function}
4493 A symbol is a function to compute the height.  It is called with the
4494 current height as argument, and should return the new height to use.
4496 @item anything else, @var{form}
4497 If the @var{height} value doesn't fit the previous possibilities, it is
4498 a form.  Emacs evaluates it to get the new height, with the symbol
4499 @code{height} bound to the current specified font height.
4500 @end table
4502 @item (raise @var{factor})
4503 This kind of display specification raises or lowers the text
4504 it applies to, relative to the baseline of the line.
4506 @var{factor} must be a number, which is interpreted as a multiple of the
4507 height of the affected text.  If it is positive, that means to display
4508 the characters raised.  If it is negative, that means to display them
4509 lower down.
4511 If the text also has a @code{height} display specification, that does
4512 not affect the amount of raising or lowering, which is based on the
4513 faces used for the text.
4514 @end table
4516 @c We put all the `@code{(when ...)}' on one line to encourage
4517 @c makeinfo's end-of-sentence heuristics to DTRT.  Previously, the dot
4518 @c was at eol; the info file ended up w/ two spaces rendered after it.
4519   You can make any display specification conditional.  To do that,
4520 package it in another list of the form
4521 @code{(when @var{condition} . @var{spec})}.
4522 Then the specification @var{spec} applies only when
4523 @var{condition} evaluates to a non-@code{nil} value.  During the
4524 evaluation, @code{object} is bound to the string or buffer having the
4525 conditional @code{display} property.  @code{position} and
4526 @code{buffer-position} are bound to the position within @code{object}
4527 and the buffer position where the @code{display} property was found,
4528 respectively.  Both positions can be different when @code{object} is a
4529 string.
4531 @node Display Margins
4532 @subsection Displaying in the Margins
4533 @cindex display margins
4534 @cindex margins, display
4536   A buffer can have blank areas called @dfn{display margins} on the
4537 left and on the right.  Ordinary text never appears in these areas,
4538 but you can put things into the display margins using the
4539 @code{display} property.  There is currently no way to make text or
4540 images in the margin mouse-sensitive.
4542   The way to display something in the margins is to specify it in a
4543 margin display specification in the @code{display} property of some
4544 text.  This is a replacing display specification, meaning that the
4545 text you put it on does not get displayed; the margin display appears,
4546 but that text does not.
4548   A margin display specification looks like @code{((margin
4549 right-margin) @var{spec})} or @code{((margin left-margin) @var{spec})}.
4550 Here, @var{spec} is another display specification that says what to
4551 display in the margin.  Typically it is a string of text to display,
4552 or an image descriptor.
4554   To display something in the margin @emph{in association with}
4555 certain buffer text, without altering or preventing the display of
4556 that text, put a @code{before-string} property on the text and put the
4557 margin display specification on the contents of the before-string.
4559   Before the display margins can display anything, you must give
4560 them a nonzero width.  The usual way to do that is to set these
4561 variables:
4563 @defvar left-margin-width
4564 This variable specifies the width of the left margin, in character
4565 cell (a.k.a.@: ``column'') units.  It is buffer-local in all buffers.
4566 A value of @code{nil} means no left marginal area.
4567 @end defvar
4569 @defvar right-margin-width
4570 This variable specifies the width of the right margin, in character
4571 cell units.  It is buffer-local in all buffers.  A value of @code{nil}
4572 means no right marginal area.
4573 @end defvar
4575   Setting these variables does not immediately affect the window.  These
4576 variables are checked when a new buffer is displayed in the window.
4577 Thus, you can make changes take effect by calling
4578 @code{set-window-buffer}.
4580   You can also set the margin widths immediately.
4582 @defun set-window-margins window left &optional right
4583 This function specifies the margin widths for window @var{window}, in
4584 character cell units.  The argument @var{left} controls the left
4585 margin, and @var{right} controls the right margin (default @code{0}).
4586 @end defun
4588 @defun window-margins &optional window
4589 This function returns the width of the left and right margins of
4590 @var{window} as a cons cell of the form @w{@code{(@var{left}
4591 . @var{right})}}.  If one of the two marginal areas does not exist,
4592 its width is returned as @code{nil}; if neither of the two margins exist,
4593 the function returns @code{(nil)}.  If @var{window} is @code{nil}, the
4594 selected window is used.
4595 @end defun
4597 @node Images
4598 @section Images
4599 @cindex images in buffers
4601   To display an image in an Emacs buffer, you must first create an image
4602 descriptor, then use it as a display specifier in the @code{display}
4603 property of text that is displayed (@pxref{Display Property}).
4605   Emacs is usually able to display images when it is run on a
4606 graphical terminal.  Images cannot be displayed in a text terminal, on
4607 certain graphical terminals that lack the support for this, or if
4608 Emacs is compiled without image support.  You can use the function
4609 @code{display-images-p} to determine if images can in principle be
4610 displayed (@pxref{Display Feature Testing}).
4612 @menu
4613 * Image Formats::       Supported image formats.
4614 * Image Descriptors::   How to specify an image for use in @code{:display}.
4615 * XBM Images::          Special features for XBM format.
4616 * XPM Images::          Special features for XPM format.
4617 * PostScript Images::   Special features for PostScript format.
4618 * ImageMagick Images::  Special features available through ImageMagick.
4619 * Other Image Types::   Various other formats are supported.
4620 * Defining Images::     Convenient ways to define an image for later use.
4621 * Showing Images::      Convenient ways to display an image once it is defined.
4622 * Multi-Frame Images::  Some images contain more than one frame.
4623 * Image Cache::         Internal mechanisms of image display.
4624 @end menu
4626 @node Image Formats
4627 @subsection Image Formats
4628 @cindex image formats
4629 @cindex image types
4631   Emacs can display a number of different image formats.  Some of
4632 these image formats are supported only if particular support libraries
4633 are installed.  On some platforms, Emacs can load support libraries on
4634 demand; if so, the variable @code{dynamic-library-alist} can be used
4635 to modify the set of known names for these dynamic libraries.
4636 @xref{Dynamic Libraries}.
4638   Supported image formats (and the required support libraries) include
4639 PBM and XBM (which do not depend on support libraries and are always
4640 available), XPM (@code{libXpm}), GIF (@code{libgif} or
4641 @code{libungif}), PostScript (@code{gs}), JPEG (@code{libjpeg}), TIFF
4642 (@code{libtiff}), PNG (@code{libpng}), and SVG (@code{librsvg}).
4644   Each of these image formats is associated with an @dfn{image type
4645 symbol}.  The symbols for the above formats are, respectively,
4646 @code{pbm}, @code{xbm}, @code{xpm}, @code{gif}, @code{postscript},
4647 @code{jpeg}, @code{tiff}, @code{png}, and @code{svg}.
4649   Furthermore, if you build Emacs with ImageMagick
4650 (@code{libMagickWand}) support, Emacs can display any image format
4651 that ImageMagick can.  @xref{ImageMagick Images}.  All images
4652 displayed via ImageMagick have type symbol @code{imagemagick}.
4654 @defvar image-types
4655 This variable contains a list of type symbols for image formats which
4656 are potentially supported in the current configuration.
4658 ``Potentially'' means that Emacs knows about the image types, not
4659 necessarily that they can be used (for example, they could depend on
4660 unavailable dynamic libraries).  To know which image types are really
4661 available, use @code{image-type-available-p}.
4662 @end defvar
4664 @defun image-type-available-p type
4665 This function returns non-@code{nil} if images of type @var{type} can
4666 be loaded and displayed.  @var{type} must be an image type symbol.
4668 For image types whose support libraries are statically linked, this
4669 function always returns @code{t}.  For image types whose support
4670 libraries are dynamically loaded, it returns @code{t} if the library
4671 could be loaded and @code{nil} otherwise.
4672 @end defun
4674 @node Image Descriptors
4675 @subsection Image Descriptors
4676 @cindex image descriptor
4678   An @dfn{image descriptor} is a list which specifies the underlying
4679 data for an image, and how to display it.  It is typically used as the
4680 value of a @code{display} overlay or text property (@pxref{Other
4681 Display Specs}); but @xref{Showing Images}, for convenient helper
4682 functions to insert images into buffers.
4684   Each image descriptor has the form @code{(image . @var{props})},
4685 where @var{props} is a property list of alternating keyword symbols
4686 and values, including at least the pair @code{:type @var{type}} that
4687 specifies the image type.
4689   The following is a list of properties that are meaningful for all
4690 image types (there are also properties which are meaningful only for
4691 certain image types, as documented in the following subsections):
4693 @table @code
4694 @item :type @var{type}
4695 The image type.
4696 @ifnottex
4697 @xref{Image Formats}.
4698 @end ifnottex
4699 Every image descriptor must include this property.
4701 @item :file @var{file}
4702 This says to load the image from file @var{file}.  If @var{file} is
4703 not an absolute file name, it is expanded in @code{data-directory}.
4705 @item :data @var{data}
4706 This specifies the raw image data.  Each image descriptor must have
4707 either @code{:data} or @code{:file}, but not both.
4709 For most image types, the value of a @code{:data} property should be a
4710 string containing the image data.  Some image types do not support
4711 @code{:data}; for some others, @code{:data} alone is not enough, so
4712 you need to use other image properties along with @code{:data}.  See
4713 the following subsections for details.
4715 @item :margin @var{margin}
4716 This specifies how many pixels to add as an extra margin around the
4717 image.  The value, @var{margin}, must be a non-negative number, or a
4718 pair @code{(@var{x} . @var{y})} of such numbers.  If it is a pair,
4719 @var{x} specifies how many pixels to add horizontally, and @var{y}
4720 specifies how many pixels to add vertically.  If @code{:margin} is not
4721 specified, the default is zero.
4723 @item :ascent @var{ascent}
4724 This specifies the amount of the image's height to use for its
4725 ascent---that is, the part above the baseline.  The value,
4726 @var{ascent}, must be a number in the range 0 to 100, or the symbol
4727 @code{center}.
4729 If @var{ascent} is a number, that percentage of the image's height is
4730 used for its ascent.
4732 If @var{ascent} is @code{center}, the image is vertically centered
4733 around a centerline which would be the vertical centerline of text drawn
4734 at the position of the image, in the manner specified by the text
4735 properties and overlays that apply to the image.
4737 If this property is omitted, it defaults to 50.
4739 @item :relief @var{relief}
4740 This adds a shadow rectangle around the image.  The value,
4741 @var{relief}, specifies the width of the shadow lines, in pixels.  If
4742 @var{relief} is negative, shadows are drawn so that the image appears
4743 as a pressed button; otherwise, it appears as an unpressed button.
4745 @item :conversion @var{algorithm}
4746 This specifies a conversion algorithm that should be applied to the
4747 image before it is displayed; the value, @var{algorithm}, specifies
4748 which algorithm.
4750 @table @code
4751 @item laplace
4752 @itemx emboss
4753 Specifies the Laplace edge detection algorithm, which blurs out small
4754 differences in color while highlighting larger differences.  People
4755 sometimes consider this useful for displaying the image for a
4756 ``disabled'' button.
4758 @item (edge-detection :matrix @var{matrix} :color-adjust @var{adjust})
4759 @cindex edge detection, images
4760 Specifies a general edge-detection algorithm.  @var{matrix} must be
4761 either a nine-element list or a nine-element vector of numbers.  A pixel
4762 at position @math{x/y} in the transformed image is computed from
4763 original pixels around that position.  @var{matrix} specifies, for each
4764 pixel in the neighborhood of @math{x/y}, a factor with which that pixel
4765 will influence the transformed pixel; element @math{0} specifies the
4766 factor for the pixel at @math{x-1/y-1}, element @math{1} the factor for
4767 the pixel at @math{x/y-1} etc., as shown below:
4768 @iftex
4769 @tex
4770 $$\pmatrix{x-1/y-1 & x/y-1  & x+1/y-1 \cr
4771    x-1/y  &   x/y &    x+1/y \cr
4772    x-1/y+1&   x/y+1 &  x+1/y+1 \cr}$$
4773 @end tex
4774 @end iftex
4775 @ifnottex
4776 @display
4777   (x-1/y-1  x/y-1  x+1/y-1
4778    x-1/y    x/y    x+1/y
4779    x-1/y+1  x/y+1  x+1/y+1)
4780 @end display
4781 @end ifnottex
4783 The resulting pixel is computed from the color intensity of the color
4784 resulting from summing up the RGB values of surrounding pixels,
4785 multiplied by the specified factors, and dividing that sum by the sum
4786 of the factors' absolute values.
4788 Laplace edge-detection currently uses a matrix of
4789 @iftex
4790 @tex
4791 $$\pmatrix{1 & 0 & 0 \cr
4792    0&  0 &  0 \cr
4793    0 & 0 & -1 \cr}$$
4794 @end tex
4795 @end iftex
4796 @ifnottex
4797 @display
4798   (1  0  0
4799    0  0  0
4800    0  0 -1)
4801 @end display
4802 @end ifnottex
4804 Emboss edge-detection uses a matrix of
4805 @iftex
4806 @tex
4807 $$\pmatrix{ 2 & -1 &  0 \cr
4808    -1 &  0 &  1 \cr
4809     0  & 1 & -2 \cr}$$
4810 @end tex
4811 @end iftex
4812 @ifnottex
4813 @display
4814   ( 2 -1  0
4815    -1  0  1
4816     0  1 -2)
4817 @end display
4818 @end ifnottex
4820 @item disabled
4821 Specifies transforming the image so that it looks ``disabled''.
4822 @end table
4824 @item :mask @var{mask}
4825 If @var{mask} is @code{heuristic} or @code{(heuristic @var{bg})}, build
4826 a clipping mask for the image, so that the background of a frame is
4827 visible behind the image.  If @var{bg} is not specified, or if @var{bg}
4828 is @code{t}, determine the background color of the image by looking at
4829 the four corners of the image, assuming the most frequently occurring
4830 color from the corners is the background color of the image.  Otherwise,
4831 @var{bg} must be a list @code{(@var{red} @var{green} @var{blue})}
4832 specifying the color to assume for the background of the image.
4834 If @var{mask} is @code{nil}, remove a mask from the image, if it has
4835 one.  Images in some formats include a mask which can be removed by
4836 specifying @code{:mask nil}.
4838 @item :pointer @var{shape}
4839 This specifies the pointer shape when the mouse pointer is over this
4840 image.  @xref{Pointer Shape}, for available pointer shapes.
4842 @item :map @var{map}
4843 @cindex image maps
4844 This associates an image map of @dfn{hot spots} with this image.
4846 An image map is an alist where each element has the format
4847 @code{(@var{area} @var{id} @var{plist})}.  An @var{area} is specified
4848 as either a rectangle, a circle, or a polygon.
4850 A rectangle is a cons
4851 @code{(rect . ((@var{x0} . @var{y0}) . (@var{x1} . @var{y1})))}
4852 which specifies the pixel coordinates of the upper left and bottom right
4853 corners of the rectangle area.
4855 A circle is a cons
4856 @code{(circle . ((@var{x0} . @var{y0}) . @var{r}))}
4857 which specifies the center and the radius of the circle; @var{r} may
4858 be a float or integer.
4860 A polygon is a cons
4861 @code{(poly . [@var{x0} @var{y0} @var{x1} @var{y1} ...])}
4862 where each pair in the vector describes one corner in the polygon.
4864 When the mouse pointer lies on a hot-spot area of an image, the
4865 @var{plist} of that hot-spot is consulted; if it contains a @code{help-echo}
4866 property, that defines a tool-tip for the hot-spot, and if it contains
4867 a @code{pointer} property, that defines the shape of the mouse cursor when
4868 it is on the hot-spot.
4869 @xref{Pointer Shape}, for available pointer shapes.
4871 When you click the mouse when the mouse pointer is over a hot-spot, an
4872 event is composed by combining the @var{id} of the hot-spot with the
4873 mouse event; for instance, @code{[area4 mouse-1]} if the hot-spot's
4874 @var{id} is @code{area4}.
4875 @end table
4877 @defun image-mask-p spec &optional frame
4878 This function returns @code{t} if image @var{spec} has a mask bitmap.
4879 @var{frame} is the frame on which the image will be displayed.
4880 @var{frame} @code{nil} or omitted means to use the selected frame
4881 (@pxref{Input Focus}).
4882 @end defun
4884 @node XBM Images
4885 @subsection XBM Images
4886 @cindex XBM
4888   To use XBM format, specify @code{xbm} as the image type.  This image
4889 format doesn't require an external library, so images of this type are
4890 always supported.
4892   Additional image properties supported for the @code{xbm} image type are:
4894 @table @code
4895 @item :foreground @var{foreground}
4896 The value, @var{foreground}, should be a string specifying the image
4897 foreground color, or @code{nil} for the default color.  This color is
4898 used for each pixel in the XBM that is 1.  The default is the frame's
4899 foreground color.
4901 @item :background @var{background}
4902 The value, @var{background}, should be a string specifying the image
4903 background color, or @code{nil} for the default color.  This color is
4904 used for each pixel in the XBM that is 0.  The default is the frame's
4905 background color.
4906 @end table
4908   If you specify an XBM image using data within Emacs instead of an
4909 external file, use the following three properties:
4911 @table @code
4912 @item :data @var{data}
4913 The value, @var{data}, specifies the contents of the image.
4914 There are three formats you can use for @var{data}:
4916 @itemize @bullet
4917 @item
4918 A vector of strings or bool-vectors, each specifying one line of the
4919 image.  Do specify @code{:height} and @code{:width}.
4921 @item
4922 A string containing the same byte sequence as an XBM file would contain.
4923 You must not specify @code{:height} and @code{:width} in this case,
4924 because omitting them is what indicates the data has the format of an
4925 XBM file.  The file contents specify the height and width of the image.
4927 @item
4928 A string or a bool-vector containing the bits of the image (plus perhaps
4929 some extra bits at the end that will not be used).  It should contain at
4930 least @var{width} * @code{height} bits.  In this case, you must specify
4931 @code{:height} and @code{:width}, both to indicate that the string
4932 contains just the bits rather than a whole XBM file, and to specify the
4933 size of the image.
4934 @end itemize
4936 @item :width @var{width}
4937 The value, @var{width}, specifies the width of the image, in pixels.
4939 @item :height @var{height}
4940 The value, @var{height}, specifies the height of the image, in pixels.
4941 @end table
4943 @node XPM Images
4944 @subsection XPM Images
4945 @cindex XPM
4947   To use XPM format, specify @code{xpm} as the image type.  The
4948 additional image property @code{:color-symbols} is also meaningful with
4949 the @code{xpm} image type:
4951 @table @code
4952 @item :color-symbols @var{symbols}
4953 The value, @var{symbols}, should be an alist whose elements have the
4954 form @code{(@var{name} . @var{color})}.  In each element, @var{name} is
4955 the name of a color as it appears in the image file, and @var{color}
4956 specifies the actual color to use for displaying that name.
4957 @end table
4959 @node PostScript Images
4960 @subsection PostScript Images
4961 @cindex postscript images
4963   To use PostScript for an image, specify image type @code{postscript}.
4964 This works only if you have Ghostscript installed.  You must always use
4965 these three properties:
4967 @table @code
4968 @item :pt-width @var{width}
4969 The value, @var{width}, specifies the width of the image measured in
4970 points (1/72 inch).  @var{width} must be an integer.
4972 @item :pt-height @var{height}
4973 The value, @var{height}, specifies the height of the image in points
4974 (1/72 inch).  @var{height} must be an integer.
4976 @item :bounding-box @var{box}
4977 The value, @var{box}, must be a list or vector of four integers, which
4978 specifying the bounding box of the PostScript image, analogous to the
4979 @samp{BoundingBox} comment found in PostScript files.
4981 @example
4982 %%BoundingBox: 22 171 567 738
4983 @end example
4984 @end table
4986 @node ImageMagick Images
4987 @subsection ImageMagick Images
4988 @cindex ImageMagick images
4989 @cindex images, support for more formats
4991   If you build Emacs with ImageMagick support, you can use the
4992 ImageMagick library to load many image formats (@pxref{File
4993 Conveniences,,, emacs, The GNU Emacs Manual}).  The image type symbol
4994 for images loaded via ImageMagick is @code{imagemagick}, regardless of
4995 the actual underlying image format.
4997 @defun imagemagick-types
4998 This function returns a list of image file extensions supported by the
4999 current ImageMagick installation.  Each list element is a symbol
5000 representing an internal ImageMagick name for an image type, such as
5001 @code{BMP} for @file{.bmp} images.
5002 @end defun
5004 @defopt imagemagick-enabled-types
5005 The value of this variable is a list of ImageMagick image types which
5006 Emacs may attempt to render using ImageMagick.  Each list element
5007 should be one of the symbols in the list returned by
5008 @code{imagemagick-types}, or an equivalent string.  Alternatively, a
5009 value of @code{t} enables ImageMagick for all possible image types.
5010 Regardless of the value of this variable,
5011 @code{imagemagick-types-inhibit} (see below) takes precedence.
5012 @end defopt
5014 @defopt imagemagick-types-inhibit
5015 The value of this variable lists the ImageMagick image types which
5016 should never be rendered using ImageMagick, regardless of the value of
5017 @code{imagemagick-enabled-types}.  A value of @code{t} disables
5018 ImageMagick entirely.
5019 @end defopt
5021 @defvar image-format-suffixes
5022 This variable is an alist mapping image types to file name extensions.
5023 Emacs uses this in conjunction with the @code{:format} image property
5024 (see below) to give a hint to the ImageMagick library as to the type
5025 of an image.  Each element has the form @code{(@var{type}
5026 @var{extension})}, where @var{type} is a symbol specifying an image
5027 content-type, and @var{extension} is a string that specifies the
5028 associated file name extension.
5029 @end defvar
5031   Images loaded with ImageMagick support the following additional
5032 image descriptor properties:
5034 @table @code
5035 @item :background @var{background}
5036 @var{background}, if non-@code{nil}, should be a string specifying a
5037 color, which is used as the image's background color if the image
5038 supports transparency.  If the value is @code{nil}, it defaults to the
5039 frame's background color.
5041 @item :width @var{width}, :height @var{height}
5042 The @code{:width} and @code{:height} keywords are used for scaling the
5043 image.  If only one of them is specified, the other one will be
5044 calculated so as to preserve the aspect ratio.  If both are specified,
5045 aspect ratio may not be preserved.
5047 @item :max-width @var{max-width}, :max-height @var{max-height}
5048 The @code{:max-width} and @code{:max-height} keywords are used for
5049 scaling if the size of the image of the image exceeds these values.
5050 If @code{:width} is set it will have precedence over @code{max-width},
5051 and if @code{:height} is set it will have precedence over
5052 @code{max-height}, but you can otherwise mix these keywords as you
5053 wish.  @code{:max-width} and @code{:max-height} will always preserve
5054 the aspect ratio.
5056 @item :format @var{type}
5057 The value, @var{type}, should be a symbol specifying the type of the
5058 image data, as found in @code{image-format-suffixes}.  This is used
5059 when the image does not have an associated file name, to provide a
5060 hint to ImageMagick to help it detect the image type.
5062 @item :rotation @var{angle}
5063 Specifies a rotation angle in degrees.
5065 @item :index @var{frame}
5066 @c Doesn't work: http://debbugs.gnu.org/7978
5067 @xref{Multi-Frame Images}.
5068 @end table
5070 @node Other Image Types
5071 @subsection Other Image Types
5072 @cindex PBM
5074   For PBM images, specify image type @code{pbm}.  Color, gray-scale and
5075 monochromatic images are supported.   For mono PBM images, two additional
5076 image properties are supported.
5078 @table @code
5079 @item :foreground @var{foreground}
5080 The value, @var{foreground}, should be a string specifying the image
5081 foreground color, or @code{nil} for the default color.  This color is
5082 used for each pixel in the PBM that is 1.  The default is the frame's
5083 foreground color.
5085 @item :background @var{background}
5086 The value, @var{background}, should be a string specifying the image
5087 background color, or @code{nil} for the default color.  This color is
5088 used for each pixel in the PBM that is 0.  The default is the frame's
5089 background color.
5090 @end table
5092 @noindent
5093 The remaining image types that Emacs can support are:
5095 @table @asis
5096 @item GIF
5097 Image type @code{gif}.
5098 Supports the @code{:index} property.  @xref{Multi-Frame Images}.
5100 @item JPEG
5101 Image type @code{jpeg}.
5103 @item PNG
5104 Image type @code{png}.
5106 @item SVG
5107 Image type @code{svg}.
5109 @item TIFF
5110 Image type @code{tiff}.
5111 Supports the @code{:index} property.  @xref{Multi-Frame Images}.
5112 @end table
5114 @node Defining Images
5115 @subsection Defining Images
5117   The functions @code{create-image}, @code{defimage} and
5118 @code{find-image} provide convenient ways to create image descriptors.
5120 @defun create-image file-or-data &optional type data-p &rest props
5121 This function creates and returns an image descriptor which uses the
5122 data in @var{file-or-data}.  @var{file-or-data} can be a file name or
5123 a string containing the image data; @var{data-p} should be @code{nil}
5124 for the former case, non-@code{nil} for the latter case.
5126 The optional argument @var{type} is a symbol specifying the image type.
5127 If @var{type} is omitted or @code{nil}, @code{create-image} tries to
5128 determine the image type from the file's first few bytes, or else
5129 from the file's name.
5131 The remaining arguments, @var{props}, specify additional image
5132 properties---for example,
5134 @c ':heuristic-mask' is not documented?
5135 @example
5136 (create-image "foo.xpm" 'xpm nil :heuristic-mask t)
5137 @end example
5139 The function returns @code{nil} if images of this type are not
5140 supported.  Otherwise it returns an image descriptor.
5141 @end defun
5143 @defmac defimage symbol specs &optional doc
5144 This macro defines @var{symbol} as an image name.  The arguments
5145 @var{specs} is a list which specifies how to display the image.
5146 The third argument, @var{doc}, is an optional documentation string.
5148 Each argument in @var{specs} has the form of a property list, and each
5149 one should specify at least the @code{:type} property and either the
5150 @code{:file} or the @code{:data} property.  The value of @code{:type}
5151 should be a symbol specifying the image type, the value of
5152 @code{:file} is the file to load the image from, and the value of
5153 @code{:data} is a string containing the actual image data.  Here is an
5154 example:
5156 @example
5157 (defimage test-image
5158   ((:type xpm :file "~/test1.xpm")
5159    (:type xbm :file "~/test1.xbm")))
5160 @end example
5162 @code{defimage} tests each argument, one by one, to see if it is
5163 usable---that is, if the type is supported and the file exists.  The
5164 first usable argument is used to make an image descriptor which is
5165 stored in @var{symbol}.
5167 If none of the alternatives will work, then @var{symbol} is defined
5168 as @code{nil}.
5169 @end defmac
5171 @defun find-image specs
5172 This function provides a convenient way to find an image satisfying one
5173 of a list of image specifications @var{specs}.
5175 Each specification in @var{specs} is a property list with contents
5176 depending on image type.  All specifications must at least contain the
5177 properties @code{:type @var{type}} and either @w{@code{:file @var{file}}}
5178 or @w{@code{:data @var{data}}}, where @var{type} is a symbol specifying
5179 the image type, e.g., @code{xbm}, @var{file} is the file to load the
5180 image from, and @var{data} is a string containing the actual image data.
5181 The first specification in the list whose @var{type} is supported, and
5182 @var{file} exists, is used to construct the image specification to be
5183 returned.  If no specification is satisfied, @code{nil} is returned.
5185 The image is looked for in @code{image-load-path}.
5186 @end defun
5188 @defvar image-load-path
5189 This variable's value is a list of locations in which to search for
5190 image files.  If an element is a string or a variable symbol whose
5191 value is a string, the string is taken to be the name of a directory
5192 to search.  If an element is a variable symbol whose value is a list,
5193 that is taken to be a list of directory names to search.
5195 The default is to search in the @file{images} subdirectory of the
5196 directory specified by @code{data-directory}, then the directory
5197 specified by @code{data-directory}, and finally in the directories in
5198 @code{load-path}.  Subdirectories are not automatically included in
5199 the search, so if you put an image file in a subdirectory, you have to
5200 supply the subdirectory name explicitly.  For example, to find the
5201 image @file{images/foo/bar.xpm} within @code{data-directory}, you
5202 should specify the image as follows:
5204 @example
5205 (defimage foo-image '((:type xpm :file "foo/bar.xpm")))
5206 @end example
5207 @end defvar
5209 @defun image-load-path-for-library library image &optional path no-error
5210 This function returns a suitable search path for images used by the
5211 Lisp package @var{library}.
5213 The function searches for @var{image} first using @code{image-load-path},
5214 excluding @file{@code{data-directory}/images}, and then in
5215 @code{load-path}, followed by a path suitable for @var{library}, which
5216 includes @file{../../etc/images} and @file{../etc/images} relative to
5217 the library file itself, and finally in
5218 @file{@code{data-directory}/images}.
5220 Then this function returns a list of directories which contains first
5221 the directory in which @var{image} was found, followed by the value of
5222 @code{load-path}.  If @var{path} is given, it is used instead of
5223 @code{load-path}.
5225 If @var{no-error} is non-@code{nil} and a suitable path can't be
5226 found, don't signal an error.  Instead, return a list of directories as
5227 before, except that @code{nil} appears in place of the image directory.
5229 Here is an example of using @code{image-load-path-for-library}:
5231 @example
5232 (defvar image-load-path) ; shush compiler
5233 (let* ((load-path (image-load-path-for-library
5234                     "mh-e" "mh-logo.xpm"))
5235        (image-load-path (cons (car load-path)
5236                               image-load-path)))
5237   (mh-tool-bar-folder-buttons-init))
5238 @end example
5239 @end defun
5241 @node Showing Images
5242 @subsection Showing Images
5244   You can use an image descriptor by setting up the @code{display}
5245 property yourself, but it is easier to use the functions in this
5246 section.
5248 @defun insert-image image &optional string area slice
5249 This function inserts @var{image} in the current buffer at point.  The
5250 value @var{image} should be an image descriptor; it could be a value
5251 returned by @code{create-image}, or the value of a symbol defined with
5252 @code{defimage}.  The argument @var{string} specifies the text to put
5253 in the buffer to hold the image.  If it is omitted or @code{nil},
5254 @code{insert-image} uses @code{" "} by default.
5256 The argument @var{area} specifies whether to put the image in a margin.
5257 If it is @code{left-margin}, the image appears in the left margin;
5258 @code{right-margin} specifies the right margin.  If @var{area} is
5259 @code{nil} or omitted, the image is displayed at point within the
5260 buffer's text.
5262 The argument @var{slice} specifies a slice of the image to insert.  If
5263 @var{slice} is @code{nil} or omitted the whole image is inserted.
5264 Otherwise, @var{slice} is a list @code{(@var{x} @var{y} @var{width}
5265 @var{height})} which specifies the @var{x} and @var{y} positions and
5266 @var{width} and @var{height} of the image area to insert.  Integer
5267 values are in units of pixels.  A floating-point number in the range
5268 0.0--1.0 stands for that fraction of the width or height of the entire
5269 image.
5271 Internally, this function inserts @var{string} in the buffer, and gives
5272 it a @code{display} property which specifies @var{image}.  @xref{Display
5273 Property}.
5274 @end defun
5276 @cindex slice, image
5277 @cindex image slice
5278 @defun insert-sliced-image image &optional string area rows cols
5279 This function inserts @var{image} in the current buffer at point, like
5280 @code{insert-image}, but splits the image into @var{rows}x@var{cols}
5281 equally sized slices.
5283 If an image is inserted ``sliced'', Emacs displays each slice as a
5284 separate image, and allow more intuitive scrolling up/down, instead of
5285 jumping up/down the entire image when paging through a buffer that
5286 displays (large) images.
5287 @end defun
5289 @defun put-image image pos &optional string area
5290 This function puts image @var{image} in front of @var{pos} in the
5291 current buffer.  The argument @var{pos} should be an integer or a
5292 marker.  It specifies the buffer position where the image should appear.
5293 The argument @var{string} specifies the text that should hold the image
5294 as an alternative to the default.
5296 The argument @var{image} must be an image descriptor, perhaps returned
5297 by @code{create-image} or stored by @code{defimage}.
5299 The argument @var{area} specifies whether to put the image in a margin.
5300 If it is @code{left-margin}, the image appears in the left margin;
5301 @code{right-margin} specifies the right margin.  If @var{area} is
5302 @code{nil} or omitted, the image is displayed at point within the
5303 buffer's text.
5305 Internally, this function creates an overlay, and gives it a
5306 @code{before-string} property containing text that has a @code{display}
5307 property whose value is the image.  (Whew!)
5308 @end defun
5310 @defun remove-images start end &optional buffer
5311 This function removes images in @var{buffer} between positions
5312 @var{start} and @var{end}.  If @var{buffer} is omitted or @code{nil},
5313 images are removed from the current buffer.
5315 This removes only images that were put into @var{buffer} the way
5316 @code{put-image} does it, not images that were inserted with
5317 @code{insert-image} or in other ways.
5318 @end defun
5320 @defun image-size spec &optional pixels frame
5321 @cindex size of image
5322 This function returns the size of an image as a pair
5323 @w{@code{(@var{width} . @var{height})}}.  @var{spec} is an image
5324 specification.  @var{pixels} non-@code{nil} means return sizes
5325 measured in pixels, otherwise return sizes measured in canonical
5326 character units (fractions of the width/height of the frame's default
5327 font).  @var{frame} is the frame on which the image will be displayed.
5328 @var{frame} null or omitted means use the selected frame (@pxref{Input
5329 Focus}).
5330 @end defun
5332 @defvar max-image-size
5333 This variable is used to define the maximum size of image that Emacs
5334 will load.  Emacs will refuse to load (and display) any image that is
5335 larger than this limit.
5337 If the value is an integer, it directly specifies the maximum
5338 image height and width, measured in pixels.  If it is floating
5339 point, it specifies the maximum image height and width
5340 as a ratio to the frame height and width.  If the value is
5341 non-numeric, there is no explicit limit on the size of images.
5343 The purpose of this variable is to prevent unreasonably large images
5344 from accidentally being loaded into Emacs.  It only takes effect the
5345 first time an image is loaded.  Once an image is placed in the image
5346 cache, it can always be displayed, even if the value of
5347 @code{max-image-size} is subsequently changed (@pxref{Image Cache}).
5348 @end defvar
5350 @node Multi-Frame Images
5351 @subsection Multi-Frame Images
5352 @cindex multi-frame images
5354 @cindex animation
5355 @cindex image animation
5356 @cindex image frames
5357 Some image files can contain more than one image.  We say that there
5358 are multiple ``frames'' in the image.  At present, Emacs supports
5359 multiple frames for GIF, TIFF, and certain ImageMagick formats such as
5360 DJVM@.
5362 The frames can be used either to represent multiple ``pages'' (this is
5363 usually the case with multi-frame TIFF files, for example), or to
5364 create animation (usually the case with multi-frame GIF files).
5366 A multi-frame image has a property @code{:index}, whose value is an
5367 integer (counting from 0) that specifies which frame is being displayed.
5369 @defun image-multi-frame-p image
5370 This function returns non-@code{nil} if @var{image} contains more than
5371 one frame.  The actual return value is a cons @code{(@var{nimages}
5372 . @var{delay})}, where @var{nimages} is the number of frames and
5373 @var{delay} is the delay in seconds between them, or @code{nil}
5374 if the image does not specify a delay.  Images that are intended to be
5375 animated usually specify a frame delay, whereas ones that are intended
5376 to be treated as multiple pages do not.
5377 @end defun
5379 @defun image-current-frame image
5380 This function returns the index of the current frame number for
5381 @var{image}, counting from 0.
5382 @end defun
5384 @defun image-show-frame image n &optional nocheck
5385 This function switches @var{image} to frame number @var{n}.  It
5386 replaces a frame number outside the valid range with that of the end
5387 of the range, unless @var{nocheck} is non-@code{nil}.  If @var{image}
5388 does not contain a frame with the specified number, the image displays
5389 as a hollow box.
5390 @end defun
5392 @defun image-animate image &optional index limit
5393 This function animates @var{image}.  The optional integer @var{index}
5394 specifies the frame from which to start (default 0).  The optional
5395 argument @var{limit} controls the length of the animation.  If omitted
5396 or @code{nil}, the image animates once only; if @code{t} it loops
5397 forever; if a number animation stops after that many seconds.
5398 @end defun
5400 @vindex image-minimum-frame-delay
5401 @vindex image-default-frame-delay
5402 @noindent Animation operates by means of a timer.  Note that Emacs imposes a
5403 minimum frame delay of 0.01 (@code{image-minimum-frame-delay}) seconds.
5404 If the image itself does not specify a delay, Emacs uses
5405 @code{image-default-frame-delay}.
5407 @defun image-animate-timer image
5408 This function returns the timer responsible for animating @var{image},
5409 if there is one.
5410 @end defun
5413 @node Image Cache
5414 @subsection Image Cache
5415 @cindex image cache
5417   Emacs caches images so that it can display them again more
5418 efficiently.  When Emacs displays an image, it searches the image
5419 cache for an existing image specification @code{equal} to the desired
5420 specification.  If a match is found, the image is displayed from the
5421 cache.  Otherwise, Emacs loads the image normally.
5423 @defun image-flush spec &optional frame
5424 This function removes the image with specification @var{spec} from the
5425 image cache of frame @var{frame}.  Image specifications are compared
5426 using @code{equal}.  If @var{frame} is @code{nil}, it defaults to the
5427 selected frame.  If @var{frame} is @code{t}, the image is flushed on
5428 all existing frames.
5430 In Emacs's current implementation, each graphical terminal possesses an
5431 image cache, which is shared by all the frames on that terminal
5432 (@pxref{Multiple Terminals}).  Thus, refreshing an image in one frame
5433 also refreshes it in all other frames on the same terminal.
5434 @end defun
5436   One use for @code{image-flush} is to tell Emacs about a change in an
5437 image file.  If an image specification contains a @code{:file}
5438 property, the image is cached based on the file's contents when the
5439 image is first displayed.  Even if the file subsequently changes,
5440 Emacs continues displaying the old version of the image.  Calling
5441 @code{image-flush} flushes the image from the cache, forcing Emacs to
5442 re-read the file the next time it needs to display that image.
5444   Another use for @code{image-flush} is for memory conservation.  If
5445 your Lisp program creates a large number of temporary images over a
5446 period much shorter than @code{image-cache-eviction-delay} (see
5447 below), you can opt to flush unused images yourself, instead of
5448 waiting for Emacs to do it automatically.
5450 @defun clear-image-cache &optional filter
5451 This function clears an image cache, removing all the images stored in
5452 it.  If @var{filter} is omitted or @code{nil}, it clears the cache for
5453 the selected frame.  If @var{filter} is a frame, it clears the cache
5454 for that frame.  If @var{filter} is @code{t}, all image caches are
5455 cleared.  Otherwise, @var{filter} is taken to be a file name, and all
5456 images associated with that file name are removed from all image
5457 caches.
5458 @end defun
5460 If an image in the image cache has not been displayed for a specified
5461 period of time, Emacs removes it from the cache and frees the
5462 associated memory.
5464 @defvar image-cache-eviction-delay
5465 This variable specifies the number of seconds an image can remain in
5466 the cache without being displayed.  When an image is not displayed for
5467 this length of time, Emacs removes it from the image cache.
5469 Under some circumstances, if the number of images in the cache grows
5470 too large, the actual eviction delay may be shorter than this.
5472 If the value is @code{nil}, Emacs does not remove images from the cache
5473 except when you explicitly clear it.  This mode can be useful for
5474 debugging.
5475 @end defvar
5477 @node Buttons
5478 @section Buttons
5479 @cindex buttons in buffers
5480 @cindex clickable buttons in buffers
5482   The Button package defines functions for inserting and manipulating
5483 @dfn{buttons} that can be activated with the mouse or via keyboard
5484 commands.  These buttons are typically used for various kinds of
5485 hyperlinks.
5487   A button is essentially a set of text or overlay properties,
5488 attached to a stretch of text in a buffer.  These properties are
5489 called @dfn{button properties}.  One of these properties, the
5490 @dfn{action property}, specifies a function which is called when the
5491 user invokes the button using the keyboard or the mouse.  The action
5492 function may examine the button and use its other properties as
5493 desired.
5495   In some ways, the Button package duplicates the functionality in the
5496 Widget package.  @xref{Top, , Introduction, widget, The Emacs Widget
5497 Library}.  The advantage of the Button package is that it is faster,
5498 smaller, and simpler to program.  From the point of view of the user,
5499 the interfaces produced by the two packages are very similar.
5501 @menu
5502 * Button Properties::      Button properties with special meanings.
5503 * Button Types::           Defining common properties for classes of buttons.
5504 * Making Buttons::         Adding buttons to Emacs buffers.
5505 * Manipulating Buttons::   Getting and setting properties of buttons.
5506 * Button Buffer Commands:: Buffer-wide commands and bindings for buttons.
5507 @end menu
5509 @node Button Properties
5510 @subsection Button Properties
5511 @cindex button properties
5513   Each button has an associated list of properties defining its
5514 appearance and behavior, and other arbitrary properties may be used
5515 for application specific purposes.  The following properties have
5516 special meaning to the Button package:
5518 @table @code
5519 @item action
5520 @kindex action @r{(button property)}
5521 The function to call when the user invokes the button, which is passed
5522 the single argument @var{button}.  By default this is @code{ignore},
5523 which does nothing.
5525 @item mouse-action
5526 @kindex mouse-action @r{(button property)}
5527 This is similar to @code{action}, and when present, will be used
5528 instead of @code{action} for button invocations resulting from
5529 mouse-clicks (instead of the user hitting @key{RET}).  If not
5530 present, mouse-clicks use @code{action} instead.
5532 @item face
5533 @kindex face @r{(button property)}
5534 This is an Emacs face controlling how buttons of this type are
5535 displayed; by default this is the @code{button} face.
5537 @item mouse-face
5538 @kindex mouse-face @r{(button property)}
5539 This is an additional face which controls appearance during
5540 mouse-overs (merged with the usual button face); by default this is
5541 the usual Emacs @code{highlight} face.
5543 @item keymap
5544 @kindex keymap @r{(button property)}
5545 The button's keymap, defining bindings active within the button
5546 region.  By default this is the usual button region keymap, stored
5547 in the variable @code{button-map}, which defines @key{RET} and
5548 @key{mouse-2} to invoke the button.
5550 @item type
5551 @kindex type @r{(button property)}
5552 The button type.  @xref{Button Types}.
5554 @item help-echo
5555 @kindex help-index @r{(button property)}
5556 A string displayed by the Emacs tool-tip help system; by default,
5557 @code{"mouse-2, RET: Push this button"}.
5559 @item follow-link
5560 @kindex follow-link @r{(button property)}
5561 The follow-link property, defining how a @key{Mouse-1} click behaves
5562 on this button, @xref{Clickable Text}.
5564 @item button
5565 @kindex button @r{(button property)}
5566 All buttons have a non-@code{nil} @code{button} property, which may be useful
5567 in finding regions of text that comprise buttons (which is what the
5568 standard button functions do).
5569 @end table
5571   There are other properties defined for the regions of text in a
5572 button, but these are not generally interesting for typical uses.
5574 @node Button Types
5575 @subsection Button Types
5576 @cindex button types
5578   Every button has a @dfn{button type}, which defines default values
5579 for the button's properties.  Button types are arranged in a
5580 hierarchy, with specialized types inheriting from more general types,
5581 so that it's easy to define special-purpose types of buttons for
5582 specific tasks.
5584 @defun define-button-type name &rest properties
5585 Define a `button type' called @var{name} (a symbol).
5586 The remaining arguments
5587 form a sequence of @var{property value} pairs, specifying default
5588 property values for buttons with this type (a button's type may be set
5589 by giving it a @code{type} property when creating the button, using
5590 the @code{:type} keyword argument).
5592 In addition, the keyword argument @code{:supertype} may be used to
5593 specify a button-type from which @var{name} inherits its default
5594 property values.  Note that this inheritance happens only when
5595 @var{name} is defined; subsequent changes to a supertype are not
5596 reflected in its subtypes.
5597 @end defun
5599   Using @code{define-button-type} to define default properties for
5600 buttons is not necessary---buttons without any specified type use the
5601 built-in button-type @code{button}---but it is encouraged, since
5602 doing so usually makes the resulting code clearer and more efficient.
5604 @node Making Buttons
5605 @subsection Making Buttons
5606 @cindex making buttons
5608   Buttons are associated with a region of text, using an overlay or
5609 text properties to hold button-specific information, all of which are
5610 initialized from the button's type (which defaults to the built-in
5611 button type @code{button}).  Like all Emacs text, the appearance of
5612 the button is governed by the @code{face} property; by default (via
5613 the @code{face} property inherited from the @code{button} button-type)
5614 this is a simple underline, like a typical web-page link.
5616   For convenience, there are two sorts of button-creation functions,
5617 those that add button properties to an existing region of a buffer,
5618 called @code{make-...button}, and those that also insert the button
5619 text, called @code{insert-...button}.
5621   The button-creation functions all take the @code{&rest} argument
5622 @var{properties}, which should be a sequence of @var{property value}
5623 pairs, specifying properties to add to the button; see @ref{Button
5624 Properties}.  In addition, the keyword argument @code{:type} may be
5625 used to specify a button-type from which to inherit other properties;
5626 see @ref{Button Types}.  Any properties not explicitly specified
5627 during creation will be inherited from the button's type (if the type
5628 defines such a property).
5630   The following functions add a button using an overlay
5631 (@pxref{Overlays}) to hold the button properties:
5633 @defun make-button beg end &rest properties
5634 This makes a button from @var{beg} to @var{end} in the
5635 current buffer, and returns it.
5636 @end defun
5638 @defun insert-button label &rest properties
5639 This insert a button with the label @var{label} at point,
5640 and returns it.
5641 @end defun
5643   The following functions are similar, but using text properties
5644 (@pxref{Text Properties}) to hold the button properties.  Such buttons
5645 do not add markers to the buffer, so editing in the buffer does not
5646 slow down if there is an extremely large numbers of buttons.  However,
5647 if there is an existing face text property on the text (e.g., a face
5648 assigned by Font Lock mode), the button face may not be visible.  Both
5649 of these functions return the starting position of the new button.
5651 @defun make-text-button beg end &rest properties
5652 This makes a button from @var{beg} to @var{end} in the current buffer,
5653 using text properties.
5654 @end defun
5656 @defun insert-text-button label &rest properties
5657 This inserts a button with the label @var{label} at point, using text
5658 properties.
5659 @end defun
5661 @node Manipulating Buttons
5662 @subsection Manipulating Buttons
5663 @cindex manipulating buttons
5665 These are functions for getting and setting properties of buttons.
5666 Often these are used by a button's invocation function to determine
5667 what to do.
5669 Where a @var{button} parameter is specified, it means an object
5670 referring to a specific button, either an overlay (for overlay
5671 buttons), or a buffer-position or marker (for text property buttons).
5672 Such an object is passed as the first argument to a button's
5673 invocation function when it is invoked.
5675 @defun button-start button
5676 Return the position at which @var{button} starts.
5677 @end defun
5679 @defun button-end button
5680 Return the position at which @var{button} ends.
5681 @end defun
5683 @defun button-get button prop
5684 Get the property of button @var{button} named @var{prop}.
5685 @end defun
5687 @defun button-put button prop val
5688 Set @var{button}'s @var{prop} property to @var{val}.
5689 @end defun
5691 @defun button-activate button &optional use-mouse-action
5692 Call @var{button}'s @code{action} property (i.e., invoke it).  If
5693 @var{use-mouse-action} is non-@code{nil}, try to invoke the button's
5694 @code{mouse-action} property instead of @code{action}; if the button
5695 has no @code{mouse-action} property, use @code{action} as normal.
5696 @end defun
5698 @defun button-label button
5699 Return @var{button}'s text label.
5700 @end defun
5702 @defun button-type button
5703 Return @var{button}'s button-type.
5704 @end defun
5706 @defun button-has-type-p button type
5707 Return @code{t} if @var{button} has button-type @var{type}, or one of
5708 @var{type}'s subtypes.
5709 @end defun
5711 @defun button-at pos
5712 Return the button at position @var{pos} in the current buffer, or
5713 @code{nil}.  If the button at @var{pos} is a text property button, the
5714 return value is a marker pointing to @var{pos}.
5715 @end defun
5717 @defun button-type-put type prop val
5718 Set the button-type @var{type}'s @var{prop} property to @var{val}.
5719 @end defun
5721 @defun button-type-get type prop
5722 Get the property of button-type @var{type} named @var{prop}.
5723 @end defun
5725 @defun button-type-subtype-p type supertype
5726 Return @code{t} if button-type @var{type} is a subtype of @var{supertype}.
5727 @end defun
5729 @node Button Buffer Commands
5730 @subsection Button Buffer Commands
5731 @cindex button buffer commands
5733 These are commands and functions for locating and operating on
5734 buttons in an Emacs buffer.
5736 @code{push-button} is the command that a user uses to actually `push'
5737 a button, and is bound by default in the button itself to @key{RET}
5738 and to @key{mouse-2} using a local keymap in the button's overlay or
5739 text properties.  Commands that are useful outside the buttons itself,
5740 such as @code{forward-button} and @code{backward-button} are
5741 additionally available in the keymap stored in
5742 @code{button-buffer-map}; a mode which uses buttons may want to use
5743 @code{button-buffer-map} as a parent keymap for its keymap.
5745 If the button has a non-@code{nil} @code{follow-link} property, and
5746 @code{mouse-1-click-follows-link} is set, a quick @key{Mouse-1} click
5747 will also activate the @code{push-button} command.
5748 @xref{Clickable Text}.
5750 @deffn Command push-button &optional pos use-mouse-action
5751 Perform the action specified by a button at location @var{pos}.
5752 @var{pos} may be either a buffer position or a mouse-event.  If
5753 @var{use-mouse-action} is non-@code{nil}, or @var{pos} is a
5754 mouse-event (@pxref{Mouse Events}), try to invoke the button's
5755 @code{mouse-action} property instead of @code{action}; if the button
5756 has no @code{mouse-action} property, use @code{action} as normal.
5757 @var{pos} defaults to point, except when @code{push-button} is invoked
5758 interactively as the result of a mouse-event, in which case, the mouse
5759 event's position is used.  If there's no button at @var{pos}, do
5760 nothing and return @code{nil}, otherwise return @code{t}.
5761 @end deffn
5763 @deffn Command forward-button n &optional wrap display-message
5764 Move to the @var{n}th next button, or @var{n}th previous button if
5765 @var{n} is negative.  If @var{n} is zero, move to the start of any
5766 button at point.  If @var{wrap} is non-@code{nil}, moving past either
5767 end of the buffer continues from the other end.  If
5768 @var{display-message} is non-@code{nil}, the button's help-echo string
5769 is displayed.  Any button with a non-@code{nil} @code{skip} property
5770 is skipped over.  Returns the button found.
5771 @end deffn
5773 @deffn Command backward-button n &optional wrap display-message
5774 Move to the @var{n}th previous button, or @var{n}th next button if
5775 @var{n} is negative.  If @var{n} is zero, move to the start of any
5776 button at point.  If @var{wrap} is non-@code{nil}, moving past either
5777 end of the buffer continues from the other end.  If
5778 @var{display-message} is non-@code{nil}, the button's help-echo string
5779 is displayed.  Any button with a non-@code{nil} @code{skip} property
5780 is skipped over.  Returns the button found.
5781 @end deffn
5783 @defun next-button pos &optional count-current
5784 @defunx previous-button pos &optional count-current
5785 Return the next button after (for @code{next-button}) or before (for
5786 @code{previous-button}) position @var{pos} in the current buffer.  If
5787 @var{count-current} is non-@code{nil}, count any button at @var{pos}
5788 in the search, instead of starting at the next button.
5789 @end defun
5791 @node Abstract Display
5792 @section Abstract Display
5793 @cindex ewoc
5794 @cindex display, abstract
5795 @cindex display, arbitrary objects
5796 @cindex model/view/controller
5797 @cindex view part, model/view/controller
5799   The Ewoc package constructs buffer text that represents a structure
5800 of Lisp objects, and updates the text to follow changes in that
5801 structure.  This is like the ``view'' component in the
5802 ``model/view/controller'' design paradigm.  Ewoc means ``Emacs's
5803 Widget for Object Collections''.
5805   An @dfn{ewoc} is a structure that organizes information required to
5806 construct buffer text that represents certain Lisp data.  The buffer
5807 text of the ewoc has three parts, in order: first, fixed @dfn{header}
5808 text; next, textual descriptions of a series of data elements (Lisp
5809 objects that you specify); and last, fixed @dfn{footer} text.
5810 Specifically, an ewoc contains information on:
5812 @itemize @bullet
5813 @item
5814 The buffer which its text is generated in.
5816 @item
5817 The text's start position in the buffer.
5819 @item
5820 The header and footer strings.
5822 @item
5823 @cindex node, ewoc
5824 @c or "@cindex node, abstract display"?
5825 A doubly-linked chain of @dfn{nodes}, each of which contains:
5827 @itemize
5828 @item
5829 A @dfn{data element}, a single Lisp object.
5831 @item
5832 Links to the preceding and following nodes in the chain.
5833 @end itemize
5835 @item
5836 A @dfn{pretty-printer} function which is responsible for
5837 inserting the textual representation of a data
5838 element value into the current buffer.
5839 @end itemize
5841   Typically, you define an ewoc with @code{ewoc-create}, and then pass
5842 the resulting ewoc structure to other functions in the Ewoc package to
5843 build nodes within it, and display it in the buffer.  Once it is
5844 displayed in the buffer, other functions determine the correspondence
5845 between buffer positions and nodes, move point from one node's textual
5846 representation to another, and so forth.  @xref{Abstract Display
5847 Functions}.
5849 @cindex encapsulation, ewoc
5850 @c or "@cindex encapsulation, abstract display"?
5851   A node @dfn{encapsulates} a data element much the way a variable
5852 holds a value.  Normally, encapsulation occurs as a part of adding a
5853 node to the ewoc.  You can retrieve the data element value and place a
5854 new value in its place, like so:
5856 @lisp
5857 (ewoc-data @var{node})
5858 @result{} value
5860 (ewoc-set-data @var{node} @var{new-value})
5861 @result{} @var{new-value}
5862 @end lisp
5864 @noindent
5865 You can also use, as the data element value, a Lisp object (list or
5866 vector) that is a container for the ``real'' value, or an index into
5867 some other structure.  The example (@pxref{Abstract Display Example})
5868 uses the latter approach.
5870   When the data changes, you will want to update the text in the
5871 buffer.  You can update all nodes by calling @code{ewoc-refresh}, or
5872 just specific nodes using @code{ewoc-invalidate}, or all nodes
5873 satisfying a predicate using @code{ewoc-map}.  Alternatively, you can
5874 delete invalid nodes using @code{ewoc-delete} or @code{ewoc-filter},
5875 and add new nodes in their place.  Deleting a node from an ewoc deletes
5876 its associated textual description from buffer, as well.
5878 @menu
5879 * Abstract Display Functions::  Functions in the Ewoc package.
5880 * Abstract Display Example::    Example of using Ewoc.
5881 @end menu
5883 @node Abstract Display Functions
5884 @subsection Abstract Display Functions
5886   In this subsection, @var{ewoc} and @var{node} stand for the
5887 structures described above (@pxref{Abstract Display}), while
5888 @var{data} stands for an arbitrary Lisp object used as a data element.
5890 @defun ewoc-create pretty-printer &optional header footer nosep
5891 This constructs and returns a new ewoc, with no nodes (and thus no data
5892 elements).  @var{pretty-printer} should be a function that takes one
5893 argument, a data element of the sort you plan to use in this ewoc, and
5894 inserts its textual description at point using @code{insert} (and never
5895 @code{insert-before-markers}, because that would interfere with the
5896 Ewoc package's internal mechanisms).
5898 Normally, a newline is automatically inserted after the header,
5899 the footer and every node's textual description.  If @var{nosep}
5900 is non-@code{nil}, no newline is inserted.  This may be useful for
5901 displaying an entire ewoc on a single line, for example, or for
5902 making nodes ``invisible'' by arranging for @var{pretty-printer}
5903 to do nothing for those nodes.
5905 An ewoc maintains its text in the buffer that is current when
5906 you create it, so switch to the intended buffer before calling
5907 @code{ewoc-create}.
5908 @end defun
5910 @defun ewoc-buffer ewoc
5911 This returns the buffer where @var{ewoc} maintains its text.
5912 @end defun
5914 @defun ewoc-get-hf ewoc
5915 This returns a cons cell @code{(@var{header} . @var{footer})}
5916 made from @var{ewoc}'s header and footer.
5917 @end defun
5919 @defun ewoc-set-hf ewoc header footer
5920 This sets the header and footer of @var{ewoc} to the strings
5921 @var{header} and @var{footer}, respectively.
5922 @end defun
5924 @defun ewoc-enter-first ewoc data
5925 @defunx ewoc-enter-last ewoc data
5926 These add a new node encapsulating @var{data}, putting it, respectively,
5927 at the beginning or end of @var{ewoc}'s chain of nodes.
5928 @end defun
5930 @defun ewoc-enter-before ewoc node data
5931 @defunx ewoc-enter-after ewoc node data
5932 These add a new node encapsulating @var{data}, adding it to
5933 @var{ewoc} before or after @var{node}, respectively.
5934 @end defun
5936 @defun ewoc-prev ewoc node
5937 @defunx ewoc-next ewoc node
5938 These return, respectively, the previous node and the next node of @var{node}
5939 in @var{ewoc}.
5940 @end defun
5942 @defun ewoc-nth ewoc n
5943 This returns the node in @var{ewoc} found at zero-based index @var{n}.
5944 A negative @var{n} means count from the end.  @code{ewoc-nth} returns
5945 @code{nil} if @var{n} is out of range.
5946 @end defun
5948 @defun ewoc-data node
5949 This extracts the data encapsulated by @var{node} and returns it.
5950 @end defun
5952 @defun ewoc-set-data node data
5953 This sets the data encapsulated by @var{node} to @var{data}.
5954 @end defun
5956 @defun ewoc-locate ewoc &optional pos guess
5957 This determines the node in @var{ewoc} which contains point (or
5958 @var{pos} if specified), and returns that node.  If @var{ewoc} has no
5959 nodes, it returns @code{nil}.  If @var{pos} is before the first node,
5960 it returns the first node; if @var{pos} is after the last node, it returns
5961 the last node.  The optional third arg @var{guess}
5962 should be a node that is likely to be near @var{pos}; this doesn't
5963 alter the result, but makes the function run faster.
5964 @end defun
5966 @defun ewoc-location node
5967 This returns the start position of @var{node}.
5968 @end defun
5970 @defun ewoc-goto-prev ewoc arg
5971 @defunx ewoc-goto-next ewoc arg
5972 These move point to the previous or next, respectively, @var{arg}th node
5973 in @var{ewoc}.  @code{ewoc-goto-prev} does not move if it is already at
5974 the first node or if @var{ewoc} is empty, whereas @code{ewoc-goto-next}
5975 moves past the last node, returning @code{nil}.  Excepting this special
5976 case, these functions return the node moved to.
5977 @end defun
5979 @defun ewoc-goto-node ewoc node
5980 This moves point to the start of @var{node} in @var{ewoc}.
5981 @end defun
5983 @defun ewoc-refresh ewoc
5984 This function regenerates the text of @var{ewoc}.  It works by
5985 deleting the text between the header and the footer, i.e., all the
5986 data elements' representations, and then calling the pretty-printer
5987 function for each node, one by one, in order.
5988 @end defun
5990 @defun ewoc-invalidate ewoc &rest nodes
5991 This is similar to @code{ewoc-refresh}, except that only @var{nodes} in
5992 @var{ewoc} are updated instead of the entire set.
5993 @end defun
5995 @defun ewoc-delete ewoc &rest nodes
5996 This deletes each node in @var{nodes} from @var{ewoc}.
5997 @end defun
5999 @defun ewoc-filter ewoc predicate &rest args
6000 This calls @var{predicate} for each data element in @var{ewoc} and
6001 deletes those nodes for which @var{predicate} returns @code{nil}.
6002 Any @var{args} are passed to @var{predicate}.
6003 @end defun
6005 @defun ewoc-collect ewoc predicate &rest args
6006 This calls @var{predicate} for each data element in @var{ewoc}
6007 and returns a list of those elements for which @var{predicate}
6008 returns non-@code{nil}.  The elements in the list are ordered
6009 as in the buffer.  Any @var{args} are passed to @var{predicate}.
6010 @end defun
6012 @defun ewoc-map map-function ewoc &rest args
6013 This calls @var{map-function} for each data element in @var{ewoc} and
6014 updates those nodes for which @var{map-function} returns non-@code{nil}.
6015 Any @var{args} are passed to @var{map-function}.
6016 @end defun
6018 @node Abstract Display Example
6019 @subsection Abstract Display Example
6021   Here is a simple example using functions of the ewoc package to
6022 implement a ``color components display'', an area in a buffer that
6023 represents a vector of three integers (itself representing a 24-bit RGB
6024 value) in various ways.
6026 @example
6027 (setq colorcomp-ewoc nil
6028       colorcomp-data nil
6029       colorcomp-mode-map nil
6030       colorcomp-labels ["Red" "Green" "Blue"])
6032 (defun colorcomp-pp (data)
6033   (if data
6034       (let ((comp (aref colorcomp-data data)))
6035         (insert (aref colorcomp-labels data) "\t: #x"
6036                 (format "%02X" comp) " "
6037                 (make-string (ash comp -2) ?#) "\n"))
6038     (let ((cstr (format "#%02X%02X%02X"
6039                         (aref colorcomp-data 0)
6040                         (aref colorcomp-data 1)
6041                         (aref colorcomp-data 2)))
6042           (samp " (sample text) "))
6043       (insert "Color\t: "
6044               (propertize samp 'face
6045                           `(foreground-color . ,cstr))
6046               (propertize samp 'face
6047                           `(background-color . ,cstr))
6048               "\n"))))
6050 (defun colorcomp (color)
6051   "Allow fiddling with COLOR in a new buffer.
6052 The buffer is in Color Components mode."
6053   (interactive "sColor (name or #RGB or #RRGGBB): ")
6054   (when (string= "" color)
6055     (setq color "green"))
6056   (unless (color-values color)
6057     (error "No such color: %S" color))
6058   (switch-to-buffer
6059    (generate-new-buffer (format "originally: %s" color)))
6060   (kill-all-local-variables)
6061   (setq major-mode 'colorcomp-mode
6062         mode-name "Color Components")
6063   (use-local-map colorcomp-mode-map)
6064   (erase-buffer)
6065   (buffer-disable-undo)
6066   (let ((data (apply 'vector (mapcar (lambda (n) (ash n -8))
6067                                      (color-values color))))
6068         (ewoc (ewoc-create 'colorcomp-pp
6069                            "\nColor Components\n\n"
6070                            (substitute-command-keys
6071                             "\n\\@{colorcomp-mode-map@}"))))
6072     (set (make-local-variable 'colorcomp-data) data)
6073     (set (make-local-variable 'colorcomp-ewoc) ewoc)
6074     (ewoc-enter-last ewoc 0)
6075     (ewoc-enter-last ewoc 1)
6076     (ewoc-enter-last ewoc 2)
6077     (ewoc-enter-last ewoc nil)))
6078 @end example
6080 @cindex controller part, model/view/controller
6081   This example can be extended to be a ``color selection widget'' (in
6082 other words, the controller part of the ``model/view/controller''
6083 design paradigm) by defining commands to modify @code{colorcomp-data}
6084 and to ``finish'' the selection process, and a keymap to tie it all
6085 together conveniently.
6087 @smallexample
6088 (defun colorcomp-mod (index limit delta)
6089   (let ((cur (aref colorcomp-data index)))
6090     (unless (= limit cur)
6091       (aset colorcomp-data index (+ cur delta)))
6092     (ewoc-invalidate
6093      colorcomp-ewoc
6094      (ewoc-nth colorcomp-ewoc index)
6095      (ewoc-nth colorcomp-ewoc -1))))
6097 (defun colorcomp-R-more () (interactive) (colorcomp-mod 0 255 1))
6098 (defun colorcomp-G-more () (interactive) (colorcomp-mod 1 255 1))
6099 (defun colorcomp-B-more () (interactive) (colorcomp-mod 2 255 1))
6100 (defun colorcomp-R-less () (interactive) (colorcomp-mod 0 0 -1))
6101 (defun colorcomp-G-less () (interactive) (colorcomp-mod 1 0 -1))
6102 (defun colorcomp-B-less () (interactive) (colorcomp-mod 2 0 -1))
6104 (defun colorcomp-copy-as-kill-and-exit ()
6105   "Copy the color components into the kill ring and kill the buffer.
6106 The string is formatted #RRGGBB (hash followed by six hex digits)."
6107   (interactive)
6108   (kill-new (format "#%02X%02X%02X"
6109                     (aref colorcomp-data 0)
6110                     (aref colorcomp-data 1)
6111                     (aref colorcomp-data 2)))
6112   (kill-buffer nil))
6114 (setq colorcomp-mode-map
6115       (let ((m (make-sparse-keymap)))
6116         (suppress-keymap m)
6117         (define-key m "i" 'colorcomp-R-less)
6118         (define-key m "o" 'colorcomp-R-more)
6119         (define-key m "k" 'colorcomp-G-less)
6120         (define-key m "l" 'colorcomp-G-more)
6121         (define-key m "," 'colorcomp-B-less)
6122         (define-key m "." 'colorcomp-B-more)
6123         (define-key m " " 'colorcomp-copy-as-kill-and-exit)
6124         m))
6125 @end smallexample
6127 Note that we never modify the data in each node, which is fixed when the
6128 ewoc is created to be either @code{nil} or an index into the vector
6129 @code{colorcomp-data}, the actual color components.
6131 @node Blinking
6132 @section Blinking Parentheses
6133 @cindex parenthesis matching
6134 @cindex blinking parentheses
6135 @cindex balancing parentheses
6137   This section describes the mechanism by which Emacs shows a matching
6138 open parenthesis when the user inserts a close parenthesis.
6140 @defvar blink-paren-function
6141 The value of this variable should be a function (of no arguments) to
6142 be called whenever a character with close parenthesis syntax is inserted.
6143 The value of @code{blink-paren-function} may be @code{nil}, in which
6144 case nothing is done.
6145 @end defvar
6147 @defopt blink-matching-paren
6148 If this variable is @code{nil}, then @code{blink-matching-open} does
6149 nothing.
6150 @end defopt
6152 @defopt blink-matching-paren-distance
6153 This variable specifies the maximum distance to scan for a matching
6154 parenthesis before giving up.
6155 @end defopt
6157 @defopt blink-matching-delay
6158 This variable specifies the number of seconds to keep indicating the
6159 matching parenthesis.  A fraction of a second often gives good
6160 results, but the default is 1, which works on all systems.
6161 @end defopt
6163 @deffn Command blink-matching-open
6164 This function is the default value of @code{blink-paren-function}.  It
6165 assumes that point follows a character with close parenthesis syntax
6166 and applies the appropriate effect momentarily to the matching opening
6167 character.  If that character is not already on the screen, it
6168 displays the character's context in the echo area.  To avoid long
6169 delays, this function does not search farther than
6170 @code{blink-matching-paren-distance} characters.
6172 Here is an example of calling this function explicitly.
6174 @smallexample
6175 @group
6176 (defun interactive-blink-matching-open ()
6177   "Indicate momentarily the start of parenthesized sexp before point."
6178   (interactive)
6179 @end group
6180 @group
6181   (let ((blink-matching-paren-distance
6182          (buffer-size))
6183         (blink-matching-paren t))
6184     (blink-matching-open)))
6185 @end group
6186 @end smallexample
6187 @end deffn
6189 @node Character Display
6190 @section Character Display
6192   This section describes how characters are actually displayed by
6193 Emacs.  Typically, a character is displayed as a @dfn{glyph} (a
6194 graphical symbol which occupies one character position on the screen),
6195 whose appearance corresponds to the character itself.  For example,
6196 the character @samp{a} (character code 97) is displayed as @samp{a}.
6197 Some characters, however, are displayed specially.  For example, the
6198 formfeed character (character code 12) is usually displayed as a
6199 sequence of two glyphs, @samp{^L}, while the newline character
6200 (character code 10) starts a new screen line.
6202   You can modify how each character is displayed by defining a
6203 @dfn{display table}, which maps each character code into a sequence of
6204 glyphs.  @xref{Display Tables}.
6206 @menu
6207 * Usual Display::       The usual conventions for displaying characters.
6208 * Display Tables::      What a display table consists of.
6209 * Active Display Table::  How Emacs selects a display table to use.
6210 * Glyphs::              How to define a glyph, and what glyphs mean.
6211 * Glyphless Chars::     How glyphless characters are drawn.
6212 @end menu
6214 @node Usual Display
6215 @subsection Usual Display Conventions
6217   Here are the conventions for displaying each character code (in the
6218 absence of a display table, which can override these
6219 @iftex
6220 conventions).
6221 @end iftex
6222 @ifnottex
6223 conventions; @pxref{Display Tables}).
6224 @end ifnottex
6226 @cindex printable ASCII characters
6227 @itemize @bullet
6228 @item
6229 The @dfn{printable @acronym{ASCII} characters}, character codes 32
6230 through 126 (consisting of numerals, English letters, and symbols like
6231 @samp{#}) are displayed literally.
6233 @item
6234 The tab character (character code 9) displays as whitespace stretching
6235 up to the next tab stop column.  @xref{Text Display,,, emacs, The GNU
6236 Emacs Manual}.  The variable @code{tab-width} controls the number of
6237 spaces per tab stop (see below).
6239 @item
6240 The newline character (character code 10) has a special effect: it
6241 ends the preceding line and starts a new line.
6243 @cindex ASCII control characters
6244 @item
6245 The non-printable @dfn{@acronym{ASCII} control characters}---character
6246 codes 0 through 31, as well as the @key{DEL} character (character code
6247 127)---display in one of two ways according to the variable
6248 @code{ctl-arrow}.  If this variable is non-@code{nil} (the default),
6249 these characters are displayed as sequences of two glyphs, where the
6250 first glyph is @samp{^} (a display table can specify a glyph to use
6251 instead of @samp{^}); e.g., the @key{DEL} character is displayed as
6252 @samp{^?}.
6254 If @code{ctl-arrow} is @code{nil}, these characters are displayed as
6255 octal escapes (see below).
6257 This rule also applies to carriage return (character code 13), if that
6258 character appears in the buffer.  But carriage returns usually do not
6259 appear in buffer text; they are eliminated as part of end-of-line
6260 conversion (@pxref{Coding System Basics}).
6262 @cindex octal escapes
6263 @item
6264 @dfn{Raw bytes} are non-@acronym{ASCII} characters with codes 128
6265 through 255 (@pxref{Text Representations}).  These characters display
6266 as @dfn{octal escapes}: sequences of four glyphs, where the first
6267 glyph is the @acronym{ASCII} code for @samp{\}, and the others are
6268 digit characters representing the character code in octal.  (A display
6269 table can specify a glyph to use instead of @samp{\}.)
6271 @item
6272 Each non-@acronym{ASCII} character with code above 255 is displayed
6273 literally, if the terminal supports it.  If the terminal does not
6274 support it, the character is said to be @dfn{glyphless}, and it is
6275 usually displayed using a placeholder glyph.  For example, if a
6276 graphical terminal has no font for a character, Emacs usually displays
6277 a box containing the character code in hexadecimal.  @xref{Glyphless
6278 Chars}.
6279 @end itemize
6281   The above display conventions apply even when there is a display
6282 table, for any character whose entry in the active display table is
6283 @code{nil}.  Thus, when you set up a display table, you need only
6284 specify the characters for which you want special behavior.
6286   The following variables affect how certain characters are displayed
6287 on the screen.  Since they change the number of columns the characters
6288 occupy, they also affect the indentation functions.  They also affect
6289 how the mode line is displayed; if you want to force redisplay of the
6290 mode line using the new values, call the function
6291 @code{force-mode-line-update} (@pxref{Mode Line Format}).
6293 @defopt ctl-arrow
6294 @cindex control characters in display
6295 This buffer-local variable controls how control characters are
6296 displayed.  If it is non-@code{nil}, they are displayed as a caret
6297 followed by the character: @samp{^A}.  If it is @code{nil}, they are
6298 displayed as octal escapes: a backslash followed by three octal
6299 digits, as in @samp{\001}.
6300 @end defopt
6302 @defopt tab-width
6303 The value of this buffer-local variable is the spacing between tab
6304 stops used for displaying tab characters in Emacs buffers.  The value
6305 is in units of columns, and the default is 8.  Note that this feature
6306 is completely independent of the user-settable tab stops used by the
6307 command @code{tab-to-tab-stop}.  @xref{Indent Tabs}.
6308 @end defopt
6310 @node Display Tables
6311 @subsection Display Tables
6313 @cindex display table
6314   A display table is a special-purpose char-table
6315 (@pxref{Char-Tables}), with @code{display-table} as its subtype, which
6316 is used to override the usual character display conventions.  This
6317 section describes how to make, inspect, and assign elements to a
6318 display table object.
6320 @defun make-display-table
6321 This creates and returns a display table.  The table initially has
6322 @code{nil} in all elements.
6323 @end defun
6325   The ordinary elements of the display table are indexed by character
6326 codes; the element at index @var{c} says how to display the character
6327 code @var{c}.  The value should be @code{nil} (which means to display
6328 the character @var{c} according to the usual display conventions;
6329 @pxref{Usual Display}), or a vector of glyph codes (which means to
6330 display the character @var{c} as those glyphs; @pxref{Glyphs}).
6332   @strong{Warning:} if you use the display table to change the display
6333 of newline characters, the whole buffer will be displayed as one long
6334 ``line''.
6336   The display table also has six ``extra slots'' which serve special
6337 purposes.  Here is a table of their meanings; @code{nil} in any slot
6338 means to use the default for that slot, as stated below.
6340 @table @asis
6341 @item 0
6342 The glyph for the end of a truncated screen line (the default for this
6343 is @samp{$}).  @xref{Glyphs}.  On graphical terminals, Emacs uses
6344 arrows in the fringes to indicate truncation, so the display table has
6345 no effect.
6347 @item 1
6348 The glyph for the end of a continued line (the default is @samp{\}).
6349 On graphical terminals, Emacs uses curved arrows in the fringes to
6350 indicate continuation, so the display table has no effect.
6352 @item 2
6353 The glyph for indicating a character displayed as an octal character
6354 code (the default is @samp{\}).
6356 @item 3
6357 The glyph for indicating a control character (the default is @samp{^}).
6359 @item 4
6360 A vector of glyphs for indicating the presence of invisible lines (the
6361 default is @samp{...}).  @xref{Selective Display}.
6363 @item 5
6364 The glyph used to draw the border between side-by-side windows (the
6365 default is @samp{|}).  @xref{Splitting Windows}.  This takes effect only
6366 when there are no scroll bars; if scroll bars are supported and in use,
6367 a scroll bar separates the two windows.
6368 @end table
6370   For example, here is how to construct a display table that mimics
6371 the effect of setting @code{ctl-arrow} to a non-@code{nil} value
6372 (@pxref{Glyphs}, for the function @code{make-glyph-code}):
6374 @example
6375 (setq disptab (make-display-table))
6376 (dotimes (i 32)
6377   (or (= i ?\t)
6378       (= i ?\n)
6379       (aset disptab i
6380             (vector (make-glyph-code ?^ 'escape-glyph)
6381                     (make-glyph-code (+ i 64) 'escape-glyph)))))
6382 (aset disptab 127
6383       (vector (make-glyph-code ?^ 'escape-glyph)
6384               (make-glyph-code ?? 'escape-glyph)))))
6385 @end example
6387 @defun display-table-slot display-table slot
6388 This function returns the value of the extra slot @var{slot} of
6389 @var{display-table}.  The argument @var{slot} may be a number from 0 to
6390 5 inclusive, or a slot name (symbol).  Valid symbols are
6391 @code{truncation}, @code{wrap}, @code{escape}, @code{control},
6392 @code{selective-display}, and @code{vertical-border}.
6393 @end defun
6395 @defun set-display-table-slot display-table slot value
6396 This function stores @var{value} in the extra slot @var{slot} of
6397 @var{display-table}.  The argument @var{slot} may be a number from 0 to
6398 5 inclusive, or a slot name (symbol).  Valid symbols are
6399 @code{truncation}, @code{wrap}, @code{escape}, @code{control},
6400 @code{selective-display}, and @code{vertical-border}.
6401 @end defun
6403 @defun describe-display-table display-table
6404 This function displays a description of the display table
6405 @var{display-table} in a help buffer.
6406 @end defun
6408 @deffn Command describe-current-display-table
6409 This command displays a description of the current display table in a
6410 help buffer.
6411 @end deffn
6413 @node Active Display Table
6414 @subsection Active Display Table
6415 @cindex active display table
6417   Each window can specify a display table, and so can each buffer.
6418 The window's display table, if there is one, takes precedence over the
6419 buffer's display table.  If neither exists, Emacs tries to use the
6420 standard display table; if that is @code{nil}, Emacs uses the usual
6421 character display conventions (@pxref{Usual Display}).
6423   Note that display tables affect how the mode line is displayed, so
6424 if you want to force redisplay of the mode line using a new display
6425 table, call @code{force-mode-line-update} (@pxref{Mode Line Format}).
6427 @defun window-display-table &optional window
6428 This function returns @var{window}'s display table, or @code{nil} if
6429 there is none.  The default for @var{window} is the selected window.
6430 @end defun
6432 @defun set-window-display-table window table
6433 This function sets the display table of @var{window} to @var{table}.
6434 The argument @var{table} should be either a display table or
6435 @code{nil}.
6436 @end defun
6438 @defvar buffer-display-table
6439 This variable is automatically buffer-local in all buffers; its value
6440 specifies the buffer's display table.  If it is @code{nil}, there is
6441 no buffer display table.
6442 @end defvar
6444 @defvar standard-display-table
6445 The value of this variable is the standard display table, which is
6446 used when Emacs is displaying a buffer in a window with neither a
6447 window display table nor a buffer display table defined.  Its default
6448 is @code{nil}.
6449 @end defvar
6451 The @file{disp-table} library defines several functions for changing
6452 the standard display table.
6454 @node Glyphs
6455 @subsection Glyphs
6456 @cindex glyph
6458 @cindex glyph code
6459   A @dfn{glyph} is a graphical symbol which occupies a single
6460 character position on the screen.  Each glyph is represented in Lisp
6461 as a @dfn{glyph code}, which specifies a character and optionally a
6462 face to display it in (@pxref{Faces}).  The main use of glyph codes is
6463 as the entries of display tables (@pxref{Display Tables}).  The
6464 following functions are used to manipulate glyph codes:
6466 @defun make-glyph-code char &optional face
6467 This function returns a glyph code representing char @var{char} with
6468 face @var{face}.  If @var{face} is omitted or @code{nil}, the glyph
6469 uses the default face; in that case, the glyph code is an integer.  If
6470 @var{face} is non-@code{nil}, the glyph code is not necessarily an
6471 integer object.
6472 @end defun
6474 @defun glyph-char glyph
6475 This function returns the character of glyph code @var{glyph}.
6476 @end defun
6478 @defun glyph-face glyph
6479 This function returns face of glyph code @var{glyph}, or @code{nil} if
6480 @var{glyph} uses the default face.
6481 @end defun
6483 @ifnottex
6484   You can set up a @dfn{glyph table} to change how glyph codes are
6485 actually displayed on text terminals.  This feature is semi-obsolete;
6486 use @code{glyphless-char-display} instead (@pxref{Glyphless Chars}).
6488 @defvar glyph-table
6489 The value of this variable, if non-@code{nil}, is the current glyph
6490 table.  It takes effect only on character terminals; on graphical
6491 displays, all glyphs are displayed literally.  The glyph table should
6492 be a vector whose @var{g}th element specifies how to display glyph
6493 code @var{g}, where @var{g} is the glyph code for a glyph whose face
6494 is unspecified.  Each element should be one of the following:
6496 @table @asis
6497 @item @code{nil}
6498 Display this glyph literally.
6500 @item a string
6501 Display this glyph by sending the specified string to the terminal.
6503 @item a glyph code
6504 Display the specified glyph code instead.
6505 @end table
6507 Any integer glyph code greater than or equal to the length of the
6508 glyph table is displayed literally.
6509 @end defvar
6510 @end ifnottex
6512 @node Glyphless Chars
6513 @subsection Glyphless Character Display
6514 @cindex glyphless characters
6516   @dfn{Glyphless characters} are characters which are displayed in a
6517 special way, e.g., as a box containing a hexadecimal code, instead of
6518 being displayed literally.  These include characters which are
6519 explicitly defined to be glyphless, as well as characters for which
6520 there is no available font (on a graphical display), and characters
6521 which cannot be encoded by the terminal's coding system (on a text
6522 terminal).
6524 @defvar glyphless-char-display
6525 The value of this variable is a char-table which defines glyphless
6526 characters and how they are displayed.  Each entry must be one of the
6527 following display methods:
6529 @table @asis
6530 @item @code{nil}
6531 Display the character in the usual way.
6533 @item @code{zero-width}
6534 Don't display the character.
6536 @item @code{thin-space}
6537 Display a thin space, 1-pixel wide on graphical displays, or
6538 1-character wide on text terminals.
6540 @item @code{empty-box}
6541 Display an empty box.
6543 @item @code{hex-code}
6544 Display a box containing the Unicode codepoint of the character, in
6545 hexadecimal notation.
6547 @item an @acronym{ASCII} string
6548 Display a box containing that string.
6550 @item a cons cell @code{(@var{graphical} . @var{text})}
6551 Display with @var{graphical} on graphical displays, and with
6552 @var{text} on text terminals.  Both @var{graphical} and @var{text}
6553 must be one of the display methods described above.
6554 @end table
6556 @noindent
6557 The @code{thin-space}, @code{empty-box}, @code{hex-code}, and
6558 @acronym{ASCII} string display methods are drawn with the
6559 @code{glyphless-char} face.
6561 The char-table has one extra slot, which determines how to display any
6562 character that cannot be displayed with any available font, or cannot
6563 be encoded by the terminal's coding system.  Its value should be one
6564 of the above display methods, except @code{zero-width} or a cons cell.
6566 If a character has a non-@code{nil} entry in an active display table,
6567 the display table takes effect; in this case, Emacs does not consult
6568 @code{glyphless-char-display} at all.
6569 @end defvar
6571 @defopt glyphless-char-display-control
6572 This user option provides a convenient way to set
6573 @code{glyphless-char-display} for groups of similar characters.  Do
6574 not set its value directly from Lisp code; the value takes effect only
6575 via a custom @code{:set} function (@pxref{Variable Definitions}),
6576 which updates @code{glyphless-char-display}.
6578 Its value should be an alist of elements @code{(@var{group}
6579 . @var{method})}, where @var{group} is a symbol specifying a group of
6580 characters, and @var{method} is a symbol specifying how to display
6581 them.
6583 @var{group} should be one of the following:
6585 @table @code
6586 @item c0-control
6587 @acronym{ASCII} control characters @code{U+0000} to @code{U+001F},
6588 excluding the newline and tab characters (normally displayed as escape
6589 sequences like @samp{^A}; @pxref{Text Display,, How Text Is Displayed,
6590 emacs, The GNU Emacs Manual}).
6592 @item c1-control
6593 Non-@acronym{ASCII}, non-printing characters @code{U+0080} to
6594 @code{U+009F} (normally displayed as octal escape sequences like
6595 @samp{\230}).
6597 @item format-control
6598 Characters of Unicode General Category `Cf', such as @samp{U+200E}
6599 (Left-to-Right Mark), but excluding characters that have graphic
6600 images, such as @samp{U+00AD} (Soft Hyphen).
6602 @item no-font
6603 Characters for there is no suitable font, or which cannot be encoded
6604 by the terminal's coding system.
6605 @end table
6607 @c FIXME: this can also be `acronym', but that's not currently
6608 @c completely implemented; it applies only to the format-control
6609 @c group, and only works if the acronym is in `char-acronym-table'.
6610 The @var{method} symbol should be one of @code{zero-width},
6611 @code{thin-space}, @code{empty-box}, or @code{hex-code}.  These have
6612 the same meanings as in @code{glyphless-char-display}, above.
6613 @end defopt
6615 @node Beeping
6616 @section Beeping
6617 @cindex bell
6619   This section describes how to make Emacs ring the bell (or blink the
6620 screen) to attract the user's attention.  Be conservative about how
6621 often you do this; frequent bells can become irritating.  Also be
6622 careful not to use just beeping when signaling an error is more
6623 appropriate (@pxref{Errors}).
6625 @defun ding &optional do-not-terminate
6626 @cindex keyboard macro termination
6627 This function beeps, or flashes the screen (see @code{visible-bell} below).
6628 It also terminates any keyboard macro currently executing unless
6629 @var{do-not-terminate} is non-@code{nil}.
6630 @end defun
6632 @defun beep &optional do-not-terminate
6633 This is a synonym for @code{ding}.
6634 @end defun
6636 @defopt visible-bell
6637 This variable determines whether Emacs should flash the screen to
6638 represent a bell.  Non-@code{nil} means yes, @code{nil} means no.
6639 This is effective on graphical displays, and on text terminals
6640 provided the terminal's Termcap entry defines the visible bell
6641 capability (@samp{vb}).
6642 @end defopt
6644 @defvar ring-bell-function
6645 If this is non-@code{nil}, it specifies how Emacs should ``ring the
6646 bell''.  Its value should be a function of no arguments.  If this is
6647 non-@code{nil}, it takes precedence over the @code{visible-bell}
6648 variable.
6649 @end defvar
6651 @node Window Systems
6652 @section Window Systems
6654   Emacs works with several window systems, most notably the X Window
6655 System.  Both Emacs and X use the term ``window'', but use it
6656 differently.  An Emacs frame is a single window as far as X is
6657 concerned; the individual Emacs windows are not known to X at all.
6659 @defvar window-system
6660 This terminal-local variable tells Lisp programs what window system
6661 Emacs is using for displaying the frame.  The possible values are
6663 @table @code
6664 @item x
6665 @cindex X Window System
6666 Emacs is displaying the frame using X.
6667 @item w32
6668 Emacs is displaying the frame using native MS-Windows GUI.
6669 @item ns
6670 Emacs is displaying the frame using the Nextstep interface (used on
6671 GNUstep and Mac OS X).
6672 @item pc
6673 Emacs is displaying the frame using MS-DOS direct screen writes.
6674 @item nil
6675 Emacs is displaying the frame on a character-based terminal.
6676 @end table
6677 @end defvar
6679 @defvar initial-window-system
6680 This variable holds the value of @code{window-system} used for the
6681 first frame created by Emacs during startup.  (When Emacs is invoked
6682 with the @option{--daemon} option, it does not create any initial
6683 frames, so @code{initial-window-system} is @code{nil}.  @xref{Initial
6684 Options, daemon,, emacs, The GNU Emacs Manual}.)
6685 @end defvar
6687 @defun window-system &optional frame
6688 This function returns a symbol whose name tells what window system is
6689 used for displaying @var{frame} (which defaults to the currently
6690 selected frame).  The list of possible symbols it returns is the same
6691 one documented for the variable @code{window-system} above.
6692 @end defun
6694   Do @emph{not} use @code{window-system} and
6695 @code{initial-window-system} as predicates or boolean flag variables,
6696 if you want to write code that works differently on text terminals and
6697 graphic displays.  That is because @code{window-system} is not a good
6698 indicator of Emacs capabilities on a given display type.  Instead, use
6699 @code{display-graphic-p} or any of the other @code{display-*-p}
6700 predicates described in @ref{Display Feature Testing}.
6702 @node Bidirectional Display
6703 @section Bidirectional Display
6704 @cindex bidirectional display
6705 @cindex right-to-left text
6707   Emacs can display text written in scripts, such as Arabic, Farsi,
6708 and Hebrew, whose natural ordering for horizontal text display runs
6709 from right to left.  Furthermore, segments of Latin script and digits
6710 embedded in right-to-left text are displayed left-to-right, while
6711 segments of right-to-left script embedded in left-to-right text
6712 (e.g., Arabic or Hebrew text in comments or strings in a program
6713 source file) are appropriately displayed right-to-left.  We call such
6714 mixtures of left-to-right and right-to-left text @dfn{bidirectional
6715 text}.  This section describes the facilities and options for editing
6716 and displaying bidirectional text.
6718 @cindex logical order
6719 @cindex reading order
6720 @cindex visual order
6721 @cindex unicode bidirectional algorithm
6722 @cindex UBA
6723 @cindex bidirectional reordering
6724 @cindex reordering, of bidirectional text
6725   Text is stored in Emacs buffers and strings in @dfn{logical} (or
6726 @dfn{reading}) order, i.e., the order in which a human would read
6727 each character.  In right-to-left and bidirectional text, the order in
6728 which characters are displayed on the screen (called @dfn{visual
6729 order}) is not the same as logical order; the characters' screen
6730 positions do not increase monotonically with string or buffer
6731 position.  In performing this @dfn{bidirectional reordering}, Emacs
6732 follows the Unicode Bidirectional Algorithm (a.k.a.@: @acronym{UBA}),
6733 which is described in Annex #9 of the Unicode standard
6734 (@url{http://www.unicode.org/reports/tr9/}).  Emacs provides a ``Full
6735 Bidirectionality'' class implementation of the @acronym{UBA},
6736 consistent with the requirements of the Unicode Standard v7.0.
6738 @defvar bidi-display-reordering
6739 If the value of this buffer-local variable is non-@code{nil} (the
6740 default), Emacs performs bidirectional reordering for display.  The
6741 reordering affects buffer text, as well as display strings and overlay
6742 strings from text and overlay properties in the buffer (@pxref{Overlay
6743 Properties}, and @pxref{Display Property}).  If the value is
6744 @code{nil}, Emacs does not perform bidirectional reordering in the
6745 buffer.
6747 The default value of @code{bidi-display-reordering} controls the
6748 reordering of strings which are not directly supplied by a buffer,
6749 including the text displayed in mode lines (@pxref{Mode Line Format})
6750 and header lines (@pxref{Header Lines}).
6751 @end defvar
6753 @cindex unibyte buffers, and bidi reordering
6754   Emacs never reorders the text of a unibyte buffer, even if
6755 @code{bidi-display-reordering} is non-@code{nil} in the buffer.  This
6756 is because unibyte buffers contain raw bytes, not characters, and thus
6757 lack the directionality properties required for reordering.
6758 Therefore, to test whether text in a buffer will be reordered for
6759 display, it is not enough to test the value of
6760 @code{bidi-display-reordering} alone.  The correct test is this:
6762 @example
6763  (if (and enable-multibyte-characters
6764           bidi-display-reordering)
6765      ;; Buffer is being reordered for display
6766    )
6767 @end example
6769   However, unibyte display and overlay strings @emph{are} reordered if
6770 their parent buffer is reordered.  This is because plain-@sc{ascii}
6771 strings are stored by Emacs as unibyte strings.  If a unibyte display
6772 or overlay string includes non-@sc{ascii} characters, these characters
6773 are assumed to have left-to-right direction.
6775 @cindex display properties, and bidi reordering of text
6776   Text covered by @code{display} text properties, by overlays with
6777 @code{display} properties whose value is a string, and by any other
6778 properties that replace buffer text, is treated as a single unit when
6779 it is reordered for display.  That is, the entire chunk of text
6780 covered by these properties is reordered together.  Moreover, the
6781 bidirectional properties of the characters in such a chunk of text are
6782 ignored, and Emacs reorders them as if they were replaced with a
6783 single character @code{U+FFFC}, known as the @dfn{Object Replacement
6784 Character}.  This means that placing a display property over a portion
6785 of text may change the way that the surrounding text is reordered for
6786 display.  To prevent this unexpected effect, always place such
6787 properties on text whose directionality is identical with text that
6788 surrounds it.
6790 @cindex base direction of a paragraph
6791   Each paragraph of bidirectional text has a @dfn{base direction},
6792 either right-to-left or left-to-right.  Left-to-right paragraphs are
6793 displayed beginning at the left margin of the window, and are
6794 truncated or continued when the text reaches the right margin.
6795 Right-to-left paragraphs are displayed beginning at the right margin,
6796 and are continued or truncated at the left margin.
6798   By default, Emacs determines the base direction of each paragraph by
6799 looking at the text at its beginning.  The precise method of
6800 determining the base direction is specified by the @acronym{UBA}; in a
6801 nutshell, the first character in a paragraph that has an explicit
6802 directionality determines the base direction of the paragraph.
6803 However, sometimes a buffer may need to force a certain base direction
6804 for its paragraphs.  For example, buffers containing program source
6805 code should force all paragraphs to be displayed left-to-right.  You
6806 can use following variable to do this:
6808 @defvar bidi-paragraph-direction
6809 If the value of this buffer-local variable is the symbol
6810 @code{right-to-left} or @code{left-to-right}, all paragraphs in the
6811 buffer are assumed to have that specified direction.  Any other value
6812 is equivalent to @code{nil} (the default), which means to determine
6813 the base direction of each paragraph from its contents.
6815 @cindex @code{prog-mode}, and @code{bidi-paragraph-direction}
6816 Modes for program source code should set this to @code{left-to-right}.
6817 Prog mode does this by default, so modes derived from Prog mode do not
6818 need to set this explicitly (@pxref{Basic Major Modes}).
6819 @end defvar
6821 @defun current-bidi-paragraph-direction &optional buffer
6822 This function returns the paragraph direction at point in the named
6823 @var{buffer}.  The returned value is a symbol, either
6824 @code{left-to-right} or @code{right-to-left}.  If @var{buffer} is
6825 omitted or @code{nil}, it defaults to the current buffer.  If the
6826 buffer-local value of the variable @code{bidi-paragraph-direction} is
6827 non-@code{nil}, the returned value will be identical to that value;
6828 otherwise, the returned value reflects the paragraph direction
6829 determined dynamically by Emacs.  For buffers whose value of
6830 @code{bidi-display-reordering} is @code{nil} as well as unibyte
6831 buffers, this function always returns @code{left-to-right}.
6832 @end defun
6834 @cindex visual-order cursor motion
6835   Sometimes there's a need to move point in strict visual order,
6836 either to the left or to the right of its current screen position.
6837 Emacs provides a primitive to do that.
6839 @defun move-point-visually direction
6840 This function moves point of the currently selected window to the
6841 buffer position that appears immediately to the right or to the left
6842 of point on the screen.  If @var{direction} is positive, point will
6843 move one screen position to the right, otherwise it will move one
6844 screen position to the left.  Note that, depending on the surrounding
6845 bidirectional context, this could potentially move point many buffer
6846 positions away.  If invoked at the end of a screen line, the function
6847 moves point to the rightmost or leftmost screen position of the next
6848 or previous screen line, as appropriate for the value of
6849 @var{direction}.
6851 The function returns the new buffer position as its value.
6852 @end defun
6854 @cindex layout on display, and bidirectional text
6855 @cindex jumbled display of bidirectional text
6856 @cindex concatenating bidirectional strings
6857   Bidirectional reordering can have surprising and unpleasant effects
6858 when two strings with bidirectional content are juxtaposed in a
6859 buffer, or otherwise programmatically concatenated into a string of
6860 text.  A typical problematic case is when a buffer consists of
6861 sequences of text ``fields'' separated by whitespace or punctuation
6862 characters, like Buffer Menu mode or Rmail Summary Mode.  Because the
6863 punctuation characters used as separators have @dfn{weak
6864 directionality}, they take on the directionality of surrounding text.
6865 As result, a numeric field that follows a field with bidirectional
6866 content can be displayed @emph{to the left} of the preceding field,
6867 messing up the expected layout.  There are several ways to avoid this
6868 problem:
6870 @itemize @minus
6871 @item
6872 Append the special character @code{U+200E}, LEFT-TO-RIGHT MARK, or
6873 @acronym{LRM}, to the end of each field that may have bidirectional
6874 content, or prepend it to the beginning of the following field.  The
6875 function @code{bidi-string-mark-left-to-right}, described below, comes
6876 in handy for this purpose.  (In a right-to-left paragraph, use
6877 @code{U+200F}, RIGHT-TO-LEFT MARK, or @acronym{RLM}, instead.)  This
6878 is one of the solutions recommended by the UBA.
6880 @item
6881 Include the tab character in the field separator.  The tab character
6882 plays the role of @dfn{segment separator} in bidirectional reordering,
6883 causing the text on either side to be reordered separately.
6885 @cindex @code{space} display spec, and bidirectional text
6886 @item
6887 Separate fields with a @code{display} property or overlay with a
6888 property value of the form @code{(space . PROPS)} (@pxref{Specified
6889 Space}).  Emacs treats this display specification as a @dfn{paragraph
6890 separator}, and reorders the text on either side separately.
6891 @end itemize
6893 @defun bidi-string-mark-left-to-right string
6894 This function returns its argument @var{string}, possibly modified,
6895 such that the result can be safely concatenated with another string,
6896 or juxtaposed with another string in a buffer, without disrupting the
6897 relative layout of this string and the next one on display.  If the
6898 string returned by this function is displayed as part of a
6899 left-to-right paragraph, it will always appear on display to the left
6900 of the text that follows it.  The function works by examining the
6901 characters of its argument, and if any of those characters could cause
6902 reordering on display, the function appends the @acronym{LRM}
6903 character to the string.  The appended @acronym{LRM} character is made
6904 invisible by giving it an @code{invisible} text property of @code{t}
6905 (@pxref{Invisible Text}).
6906 @end defun
6908   The reordering algorithm uses the bidirectional properties of the
6909 characters stored as their @code{bidi-class} property
6910 (@pxref{Character Properties}).  Lisp programs can change these
6911 properties by calling the @code{put-char-code-property} function.
6912 However, doing this requires a thorough understanding of the
6913 @acronym{UBA}, and is therefore not recommended.  Any changes to the
6914 bidirectional properties of a character have global effect: they
6915 affect all Emacs frames and windows.
6917   Similarly, the @code{mirroring} property is used to display the
6918 appropriate mirrored character in the reordered text.  Lisp programs
6919 can affect the mirrored display by changing this property.  Again, any
6920 such changes affect all of Emacs display.
6922 @cindex overriding bidirectional properties
6923 @cindex directional overrides
6924 @cindex LRO
6925 @cindex RLO
6926   The bidirectional properties of characters can be overridden by
6927 inserting into the text special directional control characters,
6928 LEFT-TO-RIGHT OVERRIDE (@acronym{LRO}) and RIGHT-TO-LEFT OVERRIDE
6929 (@acronym{RLO}).  Any characters between a @acronym{RLO} and the
6930 following newline or POP DIRECTIONAL FORMATTING (@acronym{PDF})
6931 control character, whichever comes first, will be displayed as if they
6932 were strong right-to-left characters, i.e.@: they will be reversed on
6933 display.  Similarly, any characters between @acronym{LRO} and
6934 @acronym{PDF} or newline will display as if they were strong
6935 left-to-right, and will @emph{not} be reversed even if they are strong
6936 right-to-left characters.
6938 @cindex phishing using directional overrides
6939 @cindex malicious use of directional overrides
6940   These overrides are useful when you want to make some text
6941 unaffected by the reordering algorithm, and instead directly control
6942 the display order.  But they can also be used for malicious purposes,
6943 known as @dfn{phishing}.  Specifically, a URL on a Web page or a link
6944 in an email message can be manipulated to make its visual appearance
6945 unrecognizable, or similar to some popular benign location, while the
6946 real location, interpreted by a browser in the logical order, is very
6947 different.
6949   Emacs provides a primitive that applications can use to detect
6950 instances of text whose bidirectional properties were overridden so as
6951 to make a left-to-right character display as if it were a
6952 right-to-left character, or vise versa.
6954 @defun bidi-find-overridden-directionality from to &optional object
6955 This function looks at the text of the specified @var{object} between
6956 positions @var{from} (inclusive) and @var{to} (exclusive), and returns
6957 the first position where it finds a strong left-to-right character
6958 whose directional properties were forced to display the character as
6959 right-to-left, or for a strong right-to-left character that was forced
6960 to display as left-to-right.  If it finds no such characters in the
6961 specified region of text, it returns @code{nil}.
6963 The optional argument @var{object} specifies which text to search, and
6964 defaults to the current buffer.  If @var{object} is non-@code{nil}, it
6965 can be some other buffer, or it can be a string or a window.  If it is
6966 a string, the function searches that string.  If it is a window, the
6967 function searches the buffer displayed in that window.  If a buffer
6968 whose text you want to examine is displayed in some window, we
6969 recommend to specify it by that window, rather than pass the buffer to
6970 the function.  This is because telling the function about the window
6971 allows it to correctly account for window-specific overlays, which
6972 might change the result of the function if some text in the buffer is
6973 covered by overlays.
6974 @end defun
6976 @cindex copying bidirectional text, preserve visual order
6977 @cindex visual order, preserve when copying bidirectional text
6978   When text that includes mixed right-to-left and left-to-right
6979 characters and bidirectional controls is copied into a different
6980 location, it can change its visual appearance, and also can affect the
6981 visual appearance of the surrounding text at destination.  This is
6982 because reordering of bidirectional text specified by the
6983 @acronym{UBA} has non-trivial context-dependent effects both on the
6984 copied text and on the text at copy destination that will surround it.
6986   Sometimes, a Lisp program may need to preserve the exact visual
6987 appearance of the copied text at destination, and of the text that
6988 surrounds the copy.  Lisp programs can use the following function to
6989 achieve that effect.
6991 @defun buffer-substring-with-bidi-context start end &optional no-properties
6992 This function works similar to @code{buffer-substring} (@pxref{Buffer
6993 Contents}), but it prepends and appends to the copied text bidi
6994 directional control characters necessary to preserve the visual
6995 appearance of the text when it is inserted at another place.  Optional
6996 argument @var{no-properties}, if non-@code{nil}, means remove the text
6997 properties from the copy of the text.
6998 @end defun