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