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