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