]> code.delx.au - gnu-emacs/blob - lispref/help.texi
* frames.texi (Window System Selections): Remove clipboard from
[gnu-emacs] / lispref / help.texi
1 @c -*-texinfo-*-
2 @c This is part of the GNU Emacs Lisp Reference Manual.
3 @c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1998, 1999, 2002, 2003,
4 @c 2004, 2005, 2006 Free Software Foundation, Inc.
5 @c See the file elisp.texi for copying conditions.
6 @setfilename ../info/help
7 @node Documentation, Files, Modes, Top
8 @chapter Documentation
9 @cindex documentation strings
10
11 GNU Emacs Lisp has convenient on-line help facilities, most of which
12 derive their information from the documentation strings associated with
13 functions and variables. This chapter describes how to write good
14 documentation strings for your Lisp programs, as well as how to write
15 programs to access documentation.
16
17 Note that the documentation strings for Emacs are not the same thing
18 as the Emacs manual. Manuals have their own source files, written in
19 the Texinfo language; documentation strings are specified in the
20 definitions of the functions and variables they apply to. A collection
21 of documentation strings is not sufficient as a manual because a good
22 manual is not organized in that fashion; it is organized in terms of
23 topics of discussion.
24
25 For commands to access documentation strings, see @ref{Help, ,
26 Help, emacs, The GNU Emacs Manual}.
27
28 @menu
29 * Documentation Basics:: Good style for doc strings.
30 Where to put them. How Emacs stores them.
31 * Accessing Documentation:: How Lisp programs can access doc strings.
32 * Keys in Documentation:: Substituting current key bindings.
33 * Describing Characters:: Making printable descriptions of
34 non-printing characters and key sequences.
35 * Help Functions:: Subroutines used by Emacs help facilities.
36 @end menu
37
38 @node Documentation Basics
39 @comment node-name, next, previous, up
40 @section Documentation Basics
41 @cindex documentation conventions
42 @cindex writing a documentation string
43 @cindex string, writing a doc string
44
45 A documentation string is written using the Lisp syntax for strings,
46 with double-quote characters surrounding the text of the string. This
47 is because it really is a Lisp string object. The string serves as
48 documentation when it is written in the proper place in the definition
49 of a function or variable. In a function definition, the documentation
50 string follows the argument list. In a variable definition, the
51 documentation string follows the initial value of the variable.
52
53 When you write a documentation string, make the first line a
54 complete sentence (or two complete sentences) since some commands,
55 such as @code{apropos}, show only the first line of a multi-line
56 documentation string. Also, you should not indent the second line of
57 a documentation string, if it has one, because that looks odd when you
58 use @kbd{C-h f} (@code{describe-function}) or @kbd{C-h v}
59 (@code{describe-variable}) to view the documentation string. There
60 are many other conventions for doc strings; see @ref{Documentation
61 Tips}.
62
63 Documentation strings can contain several special substrings, which
64 stand for key bindings to be looked up in the current keymaps when the
65 documentation is displayed. This allows documentation strings to refer
66 to the keys for related commands and be accurate even when a user
67 rearranges the key bindings. (@xref{Keys in Documentation}.)
68
69 @vindex emacs-lisp-docstring-fill-column
70 Emacs Lisp mode fills documentation strings to the width
71 specified by @code{emacs-lisp-docstring-fill-column}.
72
73 In Emacs Lisp, a documentation string is accessible through the
74 function or variable that it describes:
75
76 @itemize @bullet
77 @item
78 @kindex function-documentation
79 The documentation for a function is usually stored in the function
80 definition itself (@pxref{Lambda Expressions}). The function
81 @code{documentation} knows how to extract it. You can also put
82 function documentation in the @code{function-documentation} property
83 of the function name. That is useful with definitions such as
84 keyboard macros that can't hold a documentation string.
85
86 @item
87 @kindex variable-documentation
88 The documentation for a variable is stored in the variable's property
89 list under the property name @code{variable-documentation}. The
90 function @code{documentation-property} knows how to retrieve it.
91 @end itemize
92
93 @cindex @file{DOC} (documentation) file
94 @cindex @file{emacs/etc/DOC-@var{version}}
95 @cindex @file{etc/DOC-@var{version}}
96 To save space, the documentation for preloaded functions and variables
97 (including primitive functions and autoloaded functions) is stored in
98 the file @file{emacs/etc/DOC-@var{version}}---not inside Emacs. The
99 documentation strings for functions and variables loaded during the
100 Emacs session from byte-compiled files are stored in those files
101 (@pxref{Docs and Compilation}).
102
103 The data structure inside Emacs has an integer offset into the file, or
104 a list containing a file name and an integer, in place of the
105 documentation string. The functions @code{documentation} and
106 @code{documentation-property} use that information to fetch the
107 documentation string from the appropriate file; this is transparent to
108 the user.
109
110 @c Wordy to prevent overfull hbox. --rjc 15mar92
111 The @file{emacs/lib-src} directory contains two utilities that you can
112 use to print nice-looking hardcopy for the file
113 @file{emacs/etc/DOC-@var{version}}. These are @file{sorted-doc} and
114 @file{digest-doc}.
115
116 @node Accessing Documentation
117 @section Access to Documentation Strings
118
119 @defun documentation-property symbol property &optional verbatim
120 This function returns the documentation string that is recorded in
121 @var{symbol}'s property list under property @var{property}. It
122 retrieves the text from a file if the value calls for that. If the
123 property value isn't @code{nil}, isn't a string, and doesn't refer to
124 text in a file, then it is evaluated to obtain a string.
125
126 The last thing this function does is pass the string through
127 @code{substitute-command-keys} to substitute actual key bindings,
128 unless @var{verbatim} is non-@code{nil}.
129
130 @smallexample
131 @group
132 (documentation-property 'command-line-processed
133 'variable-documentation)
134 @result{} "Non-nil once command line has been processed"
135 @end group
136 @group
137 (symbol-plist 'command-line-processed)
138 @result{} (variable-documentation 188902)
139 @end group
140 @group
141 (documentation-property 'emacs 'group-documentation)
142 @result{} "Customization of the One True Editor."
143 @end group
144 @end smallexample
145 @end defun
146
147 @defun documentation function &optional verbatim
148 This function returns the documentation string of @var{function}.
149 @code{documentation} handles macros, named keyboard macros, and
150 special forms, as well as ordinary functions.
151
152 If @var{function} is a symbol, this function first looks for the
153 @code{function-documentation} property of that symbol; if that has a
154 non-@code{nil} value, the documentation comes from that value (if the
155 value is not a string, it is evaluated). If @var{function} is not a
156 symbol, or if it has no @code{function-documentation} property, then
157 @code{documentation} extracts the documentation string from the actual
158 function definition, reading it from a file if called for.
159
160 Finally, unless @var{verbatim} is non-@code{nil}, it calls
161 @code{substitute-command-keys} so as to return a value containing the
162 actual (current) key bindings.
163
164 The function @code{documentation} signals a @code{void-function} error
165 if @var{function} has no function definition. However, it is OK if
166 the function definition has no documentation string. In that case,
167 @code{documentation} returns @code{nil}.
168 @end defun
169
170 @defun face-documentation face
171 This function returns the documentation string of @var{face} as a
172 face.
173 @end defun
174
175 @c Wordy to prevent overfull hboxes. --rjc 15mar92
176 Here is an example of using the two functions, @code{documentation} and
177 @code{documentation-property}, to display the documentation strings for
178 several symbols in a @samp{*Help*} buffer.
179
180 @anchor{describe-symbols example}
181 @smallexample
182 @group
183 (defun describe-symbols (pattern)
184 "Describe the Emacs Lisp symbols matching PATTERN.
185 All symbols that have PATTERN in their name are described
186 in the `*Help*' buffer."
187 (interactive "sDescribe symbols matching: ")
188 (let ((describe-func
189 (function
190 (lambda (s)
191 @end group
192 @group
193 ;; @r{Print description of symbol.}
194 (if (fboundp s) ; @r{It is a function.}
195 (princ
196 (format "%s\t%s\n%s\n\n" s
197 (if (commandp s)
198 (let ((keys (where-is-internal s)))
199 (if keys
200 (concat
201 "Keys: "
202 (mapconcat 'key-description
203 keys " "))
204 "Keys: none"))
205 "Function")
206 @end group
207 @group
208 (or (documentation s)
209 "not documented"))))
210
211 (if (boundp s) ; @r{It is a variable.}
212 @end group
213 @group
214 (princ
215 (format "%s\t%s\n%s\n\n" s
216 (if (user-variable-p s)
217 "Option " "Variable")
218 @end group
219 @group
220 (or (documentation-property
221 s 'variable-documentation)
222 "not documented")))))))
223 sym-list)
224 @end group
225
226 @group
227 ;; @r{Build a list of symbols that match pattern.}
228 (mapatoms (function
229 (lambda (sym)
230 (if (string-match pattern (symbol-name sym))
231 (setq sym-list (cons sym sym-list))))))
232 @end group
233
234 @group
235 ;; @r{Display the data.}
236 (with-output-to-temp-buffer "*Help*"
237 (mapcar describe-func (sort sym-list 'string<))
238 (print-help-return-message))))
239 @end group
240 @end smallexample
241
242 The @code{describe-symbols} function works like @code{apropos},
243 but provides more information.
244
245 @smallexample
246 @group
247 (describe-symbols "goal")
248
249 ---------- Buffer: *Help* ----------
250 goal-column Option
251 *Semipermanent goal column for vertical motion, as set by @dots{}
252 @end group
253 @c Do not blithely break or fill these lines.
254 @c That makes them incorrect.
255
256 @group
257 set-goal-column Keys: C-x C-n
258 Set the current horizontal position as a goal for C-n and C-p.
259 @end group
260 @c DO NOT put a blank line here! That is factually inaccurate!
261 @group
262 Those commands will move to this position in the line moved to
263 rather than trying to keep the same horizontal position.
264 With a non-nil argument, clears out the goal column
265 so that C-n and C-p resume vertical motion.
266 The goal column is stored in the variable `goal-column'.
267 @end group
268
269 @group
270 temporary-goal-column Variable
271 Current goal column for vertical motion.
272 It is the column where point was
273 at the start of current run of vertical motion commands.
274 When the `track-eol' feature is doing its job, the value is 9999.
275 ---------- Buffer: *Help* ----------
276 @end group
277 @end smallexample
278
279 The asterisk @samp{*} as the first character of a variable's doc string,
280 as shown above for the @code{goal-column} variable, means that it is a
281 user option; see the description of @code{defvar} in @ref{Defining
282 Variables}.
283
284 @defun Snarf-documentation filename
285 @anchor{Definition of Snarf-documentation}
286 This function is used only during Emacs initialization, just before
287 the runnable Emacs is dumped. It finds the file offsets of the
288 documentation strings stored in the file @var{filename}, and records
289 them in the in-core function definitions and variable property lists in
290 place of the actual strings. @xref{Building Emacs}.
291
292 Emacs reads the file @var{filename} from the @file{emacs/etc} directory.
293 When the dumped Emacs is later executed, the same file will be looked
294 for in the directory @code{doc-directory}. Usually @var{filename} is
295 @code{"DOC-@var{version}"}.
296 @end defun
297
298 @c Emacs 19 feature
299 @defvar doc-directory
300 This variable holds the name of the directory which should contain the
301 file @code{"DOC-@var{version}"} that contains documentation strings for
302 built-in and preloaded functions and variables.
303
304 In most cases, this is the same as @code{data-directory}. They may be
305 different when you run Emacs from the directory where you built it,
306 without actually installing it. @xref{Definition of data-directory}.
307
308 In older Emacs versions, @code{exec-directory} was used for this.
309 @end defvar
310
311 @node Keys in Documentation
312 @section Substituting Key Bindings in Documentation
313 @cindex documentation, keys in
314 @cindex keys in documentation strings
315 @cindex substituting keys in documentation
316
317 When documentation strings refer to key sequences, they should use the
318 current, actual key bindings. They can do so using certain special text
319 sequences described below. Accessing documentation strings in the usual
320 way substitutes current key binding information for these special
321 sequences. This works by calling @code{substitute-command-keys}. You
322 can also call that function yourself.
323
324 Here is a list of the special sequences and what they mean:
325
326 @table @code
327 @item \[@var{command}]
328 stands for a key sequence that will invoke @var{command}, or @samp{M-x
329 @var{command}} if @var{command} has no key bindings.
330
331 @item \@{@var{mapvar}@}
332 stands for a summary of the keymap which is the value of the variable
333 @var{mapvar}. The summary is made using @code{describe-bindings}.
334
335 @item \<@var{mapvar}>
336 stands for no text itself. It is used only for a side effect: it
337 specifies @var{mapvar}'s value as the keymap for any following
338 @samp{\[@var{command}]} sequences in this documentation string.
339
340 @item \=
341 quotes the following character and is discarded; thus, @samp{\=\[} puts
342 @samp{\[} into the output, and @samp{\=\=} puts @samp{\=} into the
343 output.
344 @end table
345
346 @strong{Please note:} Each @samp{\} must be doubled when written in a
347 string in Emacs Lisp.
348
349 @defun substitute-command-keys string
350 This function scans @var{string} for the above special sequences and
351 replaces them by what they stand for, returning the result as a string.
352 This permits display of documentation that refers accurately to the
353 user's own customized key bindings.
354 @end defun
355
356 Here are examples of the special sequences:
357
358 @smallexample
359 @group
360 (substitute-command-keys
361 "To abort recursive edit, type: \\[abort-recursive-edit]")
362 @result{} "To abort recursive edit, type: C-]"
363 @end group
364
365 @group
366 (substitute-command-keys
367 "The keys that are defined for the minibuffer here are:
368 \\@{minibuffer-local-must-match-map@}")
369 @result{} "The keys that are defined for the minibuffer here are:
370 @end group
371
372 ? minibuffer-completion-help
373 SPC minibuffer-complete-word
374 TAB minibuffer-complete
375 C-j minibuffer-complete-and-exit
376 RET minibuffer-complete-and-exit
377 C-g abort-recursive-edit
378 "
379
380 @group
381 (substitute-command-keys
382 "To abort a recursive edit from the minibuffer, type\
383 \\<minibuffer-local-must-match-map>\\[abort-recursive-edit].")
384 @result{} "To abort a recursive edit from the minibuffer, type C-g."
385 @end group
386 @end smallexample
387
388 @node Describing Characters
389 @section Describing Characters for Help Messages
390
391 These functions convert events, key sequences, or characters to
392 textual descriptions. These descriptions are useful for including
393 arbitrary text characters or key sequences in messages, because they
394 convert non-printing and whitespace characters to sequences of printing
395 characters. The description of a non-whitespace printing character is
396 the character itself.
397
398 @defun key-description sequence &optional prefix
399 @cindex Emacs event standard notation
400 This function returns a string containing the Emacs standard notation
401 for the input events in @var{sequence}. If @var{prefix} is
402 non-@code{nil}, it is a sequence of input events leading up to
403 @var{sequence} and is included in the return value. Both arguments
404 may be strings, vectors or lists. @xref{Input Events}, for more
405 information about valid events.
406
407 @smallexample
408 @group
409 (key-description [?\M-3 delete])
410 @result{} "M-3 <delete>"
411 @end group
412 @group
413 (key-description [delete] "\M-3")
414 @result{} "M-3 <delete>"
415 @end group
416 @end smallexample
417
418 See also the examples for @code{single-key-description}, below.
419 @end defun
420
421 @defun single-key-description event &optional no-angles
422 @cindex event printing
423 @cindex character printing
424 @cindex control character printing
425 @cindex meta character printing
426 This function returns a string describing @var{event} in the standard
427 Emacs notation for keyboard input. A normal printing character
428 appears as itself, but a control character turns into a string
429 starting with @samp{C-}, a meta character turns into a string starting
430 with @samp{M-}, and space, tab, etc.@: appear as @samp{SPC},
431 @samp{TAB}, etc. A function key symbol appears inside angle brackets
432 @samp{<@dots{}>}. An event that is a list appears as the name of the
433 symbol in the @sc{car} of the list, inside angle brackets.
434
435 If the optional argument @var{no-angles} is non-@code{nil}, the angle
436 brackets around function keys and event symbols are omitted; this is
437 for compatibility with old versions of Emacs which didn't use the
438 brackets.
439
440 @smallexample
441 @group
442 (single-key-description ?\C-x)
443 @result{} "C-x"
444 @end group
445 @group
446 (key-description "\C-x \M-y \n \t \r \f123")
447 @result{} "C-x SPC M-y SPC C-j SPC TAB SPC RET SPC C-l 1 2 3"
448 @end group
449 @group
450 (single-key-description 'delete)
451 @result{} "<delete>"
452 @end group
453 @group
454 (single-key-description 'C-mouse-1)
455 @result{} "<C-mouse-1>"
456 @end group
457 @group
458 (single-key-description 'C-mouse-1 t)
459 @result{} "C-mouse-1"
460 @end group
461 @end smallexample
462 @end defun
463
464 @defun text-char-description character
465 This function returns a string describing @var{character} in the
466 standard Emacs notation for characters that appear in text---like
467 @code{single-key-description}, except that control characters are
468 represented with a leading caret (which is how control characters in
469 Emacs buffers are usually displayed). Another difference is that
470 @code{text-char-description} recognizes the 2**7 bit as the Meta
471 character, whereas @code{single-key-description} uses the 2**27 bit
472 for Meta.
473
474 @smallexample
475 @group
476 (text-char-description ?\C-c)
477 @result{} "^C"
478 @end group
479 @group
480 (text-char-description ?\M-m)
481 @result{} "\xed"
482 @end group
483 @group
484 (text-char-description ?\C-\M-m)
485 @result{} "\x8d"
486 @end group
487 @group
488 (text-char-description (+ 128 ?m))
489 @result{} "M-m"
490 @end group
491 @group
492 (text-char-description (+ 128 ?\C-m))
493 @result{} "M-^M"
494 @end group
495 @end smallexample
496 @end defun
497
498 @defun read-kbd-macro string &optional need-vector
499 This function is used mainly for operating on keyboard macros, but it
500 can also be used as a rough inverse for @code{key-description}. You
501 call it with a string containing key descriptions, separated by spaces;
502 it returns a string or vector containing the corresponding events.
503 (This may or may not be a single valid key sequence, depending on what
504 events you use; @pxref{Key Sequences}.) If @var{need-vector} is
505 non-@code{nil}, the return value is always a vector.
506 @end defun
507
508 @node Help Functions
509 @section Help Functions
510
511 Emacs provides a variety of on-line help functions, all accessible to
512 the user as subcommands of the prefix @kbd{C-h}. For more information
513 about them, see @ref{Help, , Help, emacs, The GNU Emacs Manual}. Here
514 we describe some program-level interfaces to the same information.
515
516 @deffn Command apropos pattern &optional do-all
517 This function finds all ``meaningful'' symbols whose names contain a
518 match for the apropos pattern @var{pattern}. An apropos pattern is
519 either a word to match, a space-separated list of words of which at
520 least two must match, or a regular expression (if any special regular
521 expression characters occur). A symbol is ``meaningful'' if it has a
522 definition as a function, variable, or face, or has properties.
523
524 The function returns a list of elements that look like this:
525
526 @example
527 (@var{symbol} @var{score} @var{fn-doc} @var{var-doc}
528 @var{plist-doc} @var{widget-doc} @var{face-doc} @var{group-doc})
529 @end example
530
531 Here, @var{score} is an integer measure of how important the symbol
532 seems to be as a match, and the remaining elements are documentation
533 strings for @var{symbol}'s various roles (or @code{nil}).
534
535 It also displays the symbols in a buffer named @samp{*Apropos*}, each
536 with a one-line description taken from the beginning of its
537 documentation string.
538
539 @c Emacs 19 feature
540 If @var{do-all} is non-@code{nil}, or if the user option
541 @code{apropos-do-all} is non-@code{nil}, then @code{apropos} also
542 shows key bindings for the functions that are found; it also shows
543 @emph{all} interned symbols, not just meaningful ones (and it lists
544 them in the return value as well).
545 @end deffn
546
547 @defvar help-map
548 The value of this variable is a local keymap for characters following the
549 Help key, @kbd{C-h}.
550 @end defvar
551
552 @deffn {Prefix Command} help-command
553 This symbol is not a function; its function definition cell holds the
554 keymap known as @code{help-map}. It is defined in @file{help.el} as
555 follows:
556
557 @smallexample
558 @group
559 (define-key global-map (char-to-string help-char) 'help-command)
560 (fset 'help-command help-map)
561 @end group
562 @end smallexample
563 @end deffn
564
565 @defun print-help-return-message &optional function
566 This function builds a string that explains how to restore the previous
567 state of the windows after a help command. After building the message,
568 it applies @var{function} to it if @var{function} is non-@code{nil}.
569 Otherwise it calls @code{message} to display it in the echo area.
570
571 This function expects to be called inside a
572 @code{with-output-to-temp-buffer} special form, and expects
573 @code{standard-output} to have the value bound by that special form.
574 For an example of its use, see the long example in @ref{Accessing
575 Documentation}.
576 @end defun
577
578 @defvar help-char
579 The value of this variable is the help character---the character that
580 Emacs recognizes as meaning Help. By default, its value is 8, which
581 stands for @kbd{C-h}. When Emacs reads this character, if
582 @code{help-form} is a non-@code{nil} Lisp expression, it evaluates that
583 expression, and displays the result in a window if it is a string.
584
585 Usually the value of @code{help-form} is @code{nil}. Then the
586 help character has no special meaning at the level of command input, and
587 it becomes part of a key sequence in the normal way. The standard key
588 binding of @kbd{C-h} is a prefix key for several general-purpose help
589 features.
590
591 The help character is special after prefix keys, too. If it has no
592 binding as a subcommand of the prefix key, it runs
593 @code{describe-prefix-bindings}, which displays a list of all the
594 subcommands of the prefix key.
595 @end defvar
596
597 @defvar help-event-list
598 The value of this variable is a list of event types that serve as
599 alternative ``help characters.'' These events are handled just like the
600 event specified by @code{help-char}.
601 @end defvar
602
603 @defvar help-form
604 If this variable is non-@code{nil}, its value is a form to evaluate
605 whenever the character @code{help-char} is read. If evaluating the form
606 produces a string, that string is displayed.
607
608 A command that calls @code{read-event} or @code{read-char} probably
609 should bind @code{help-form} to a non-@code{nil} expression while it
610 does input. (The time when you should not do this is when @kbd{C-h} has
611 some other meaning.) Evaluating this expression should result in a
612 string that explains what the input is for and how to enter it properly.
613
614 Entry to the minibuffer binds this variable to the value of
615 @code{minibuffer-help-form} (@pxref{Definition of minibuffer-help-form}).
616 @end defvar
617
618 @defvar prefix-help-command
619 This variable holds a function to print help for a prefix key. The
620 function is called when the user types a prefix key followed by the help
621 character, and the help character has no binding after that prefix. The
622 variable's default value is @code{describe-prefix-bindings}.
623 @end defvar
624
625 @defun describe-prefix-bindings
626 This function calls @code{describe-bindings} to display a list of all
627 the subcommands of the prefix key of the most recent key sequence. The
628 prefix described consists of all but the last event of that key
629 sequence. (The last event is, presumably, the help character.)
630 @end defun
631
632 The following two functions are meant for modes that want to provide
633 help without relinquishing control, such as the ``electric'' modes.
634 Their names begin with @samp{Helper} to distinguish them from the
635 ordinary help functions.
636
637 @deffn Command Helper-describe-bindings
638 This command pops up a window displaying a help buffer containing a
639 listing of all of the key bindings from both the local and global keymaps.
640 It works by calling @code{describe-bindings}.
641 @end deffn
642
643 @deffn Command Helper-help
644 This command provides help for the current mode. It prompts the user
645 in the minibuffer with the message @samp{Help (Type ? for further
646 options)}, and then provides assistance in finding out what the key
647 bindings are, and what the mode is intended for. It returns @code{nil}.
648
649 This can be customized by changing the map @code{Helper-help-map}.
650 @end deffn
651
652 @c Emacs 19 feature
653 @defvar data-directory
654 @anchor{Definition of data-directory}
655 This variable holds the name of the directory in which Emacs finds
656 certain documentation and text files that come with Emacs. In older
657 Emacs versions, @code{exec-directory} was used for this.
658 @end defvar
659
660 @c Emacs 19 feature
661 @defmac make-help-screen fname help-line help-text help-map
662 This macro defines a help command named @var{fname} that acts like a
663 prefix key that shows a list of the subcommands it offers.
664
665 When invoked, @var{fname} displays @var{help-text} in a window, then
666 reads and executes a key sequence according to @var{help-map}. The
667 string @var{help-text} should describe the bindings available in
668 @var{help-map}.
669
670 The command @var{fname} is defined to handle a few events itself, by
671 scrolling the display of @var{help-text}. When @var{fname} reads one of
672 those special events, it does the scrolling and then reads another
673 event. When it reads an event that is not one of those few, and which
674 has a binding in @var{help-map}, it executes that key's binding and
675 then returns.
676
677 The argument @var{help-line} should be a single-line summary of the
678 alternatives in @var{help-map}. In the current version of Emacs, this
679 argument is used only if you set the option @code{three-step-help} to
680 @code{t}.
681
682 This macro is used in the command @code{help-for-help} which is the
683 binding of @kbd{C-h C-h}.
684 @end defmac
685
686 @defopt three-step-help
687 If this variable is non-@code{nil}, commands defined with
688 @code{make-help-screen} display their @var{help-line} strings in the
689 echo area at first, and display the longer @var{help-text} strings only
690 if the user types the help character again.
691 @end defopt
692
693 @ignore
694 arch-tag: ba36b4c2-e60f-49e2-bc25-61158fdcd815
695 @end ignore