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