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