aboutsummaryrefslogtreecommitdiffstats
path: root/doc/lispref/tips.texi
diff options
context:
space:
mode:
authorGlenn Morris2007-09-06 04:25:08 +0000
committerGlenn Morris2007-09-06 04:25:08 +0000
commitb8d4c8d0e9326f8ed2d1f6fc0a38fb89ec29ed27 (patch)
tree35344b3af55b9a142f03e1a3600dd162fb8c55cc /doc/lispref/tips.texi
parentf69340d750ef530bcc3497243ab3be3187f8ce6e (diff)
downloademacs-b8d4c8d0e9326f8ed2d1f6fc0a38fb89ec29ed27.tar.gz
emacs-b8d4c8d0e9326f8ed2d1f6fc0a38fb89ec29ed27.zip
Move here from ../../lispref
Diffstat (limited to 'doc/lispref/tips.texi')
-rw-r--r--doc/lispref/tips.texi1130
1 files changed, 1130 insertions, 0 deletions
diff --git a/doc/lispref/tips.texi b/doc/lispref/tips.texi
new file mode 100644
index 00000000000..f3070f4659b
--- /dev/null
+++ b/doc/lispref/tips.texi
@@ -0,0 +1,1130 @@
1@c -*-texinfo-*-
2@c This is part of the GNU Emacs Lisp Reference Manual.
3@c Copyright (C) 1990, 1991, 1992, 1993, 1995, 1998, 1999, 2001, 2002,
4@c 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
5@c See the file elisp.texi for copying conditions.
6@setfilename ../info/tips
7@node Tips, GNU Emacs Internals, GPL, Top
8@appendix Tips and Conventions
9@cindex tips for writing Lisp
10@cindex standards of coding style
11@cindex coding standards
12
13 This chapter describes no additional features of Emacs Lisp. Instead
14it gives advice on making effective use of the features described in the
15previous chapters, and describes conventions Emacs Lisp programmers
16should follow.
17
18 You can automatically check some of the conventions described below by
19running the command @kbd{M-x checkdoc RET} when visiting a Lisp file.
20It cannot check all of the conventions, and not all the warnings it
21gives necessarily correspond to problems, but it is worth examining them
22all.
23
24@menu
25* Coding Conventions:: Conventions for clean and robust programs.
26* Key Binding Conventions:: Which keys should be bound by which programs.
27* Programming Tips:: Making Emacs code fit smoothly in Emacs.
28* Compilation Tips:: Making compiled code run fast.
29* Warning Tips:: Turning off compiler warnings.
30* Documentation Tips:: Writing readable documentation strings.
31* Comment Tips:: Conventions for writing comments.
32* Library Headers:: Standard headers for library packages.
33@end menu
34
35@node Coding Conventions
36@section Emacs Lisp Coding Conventions
37
38@cindex coding conventions in Emacs Lisp
39 Here are conventions that you should follow when writing Emacs Lisp
40code intended for widespread use:
41
42@itemize @bullet
43@item
44Simply loading the package should not change Emacs's editing behavior.
45Include a command or commands to enable and disable the feature,
46or to invoke it.
47
48This convention is mandatory for any file that includes custom
49definitions. If fixing such a file to follow this convention requires
50an incompatible change, go ahead and make the incompatible change;
51don't postpone it.
52
53@item
54Since all global variables share the same name space, and all
55functions share another name space, you should choose a short word to
56distinguish your program from other Lisp programs@footnote{The
57benefits of a Common Lisp-style package system are considered not to
58outweigh the costs.}. Then take care to begin the names of all global
59variables, constants, and functions in your program with the chosen
60prefix. This helps avoid name conflicts.
61
62Occasionally, for a command name intended for users to use, it is more
63convenient if some words come before the package's name prefix. And
64constructs that define functions, variables, etc., work better if they
65start with @samp{defun} or @samp{defvar}, so put the name prefix later
66on in the name.
67
68This recommendation applies even to names for traditional Lisp
69primitives that are not primitives in Emacs Lisp---such as
70@code{copy-list}. Believe it or not, there is more than one plausible
71way to define @code{copy-list}. Play it safe; append your name prefix
72to produce a name like @code{foo-copy-list} or @code{mylib-copy-list}
73instead.
74
75If you write a function that you think ought to be added to Emacs under
76a certain name, such as @code{twiddle-files}, don't call it by that name
77in your program. Call it @code{mylib-twiddle-files} in your program,
78and send mail to @samp{bug-gnu-emacs@@gnu.org} suggesting we add
79it to Emacs. If and when we do, we can change the name easily enough.
80
81If one prefix is insufficient, your package can use two or three
82alternative common prefixes, so long as they make sense.
83
84Separate the prefix from the rest of the symbol name with a hyphen,
85@samp{-}. This will be consistent with Emacs itself and with most Emacs
86Lisp programs.
87
88@item
89Put a call to @code{provide} at the end of each separate Lisp file.
90
91@item
92If a file requires certain other Lisp programs to be loaded
93beforehand, then the comments at the beginning of the file should say
94so. Also, use @code{require} to make sure they are loaded.
95
96@item
97If one file @var{foo} uses a macro defined in another file @var{bar},
98@var{foo} should contain this expression before the first use of the
99macro:
100
101@example
102(eval-when-compile (require '@var{bar}))
103@end example
104
105@noindent
106(And the library @var{bar} should contain @code{(provide '@var{bar})},
107to make the @code{require} work.) This will cause @var{bar} to be
108loaded when you byte-compile @var{foo}. Otherwise, you risk compiling
109@var{foo} without the necessary macro loaded, and that would produce
110compiled code that won't work right. @xref{Compiling Macros}.
111
112Using @code{eval-when-compile} avoids loading @var{bar} when
113the compiled version of @var{foo} is @emph{used}.
114
115@item
116Please don't require the @code{cl} package of Common Lisp extensions at
117run time. Use of this package is optional, and it is not part of the
118standard Emacs namespace. If your package loads @code{cl} at run time,
119that could cause name clashes for users who don't use that package.
120
121However, there is no problem with using the @code{cl} package at
122compile time, with @code{(eval-when-compile (require 'cl))}. That's
123sufficient for using the macros in the @code{cl} package, because the
124compiler expands them before generating the byte-code.
125
126@item
127When defining a major mode, please follow the major mode
128conventions. @xref{Major Mode Conventions}.
129
130@item
131When defining a minor mode, please follow the minor mode
132conventions. @xref{Minor Mode Conventions}.
133
134@item
135If the purpose of a function is to tell you whether a certain condition
136is true or false, give the function a name that ends in @samp{p}. If
137the name is one word, add just @samp{p}; if the name is multiple words,
138add @samp{-p}. Examples are @code{framep} and @code{frame-live-p}.
139
140@item
141If a user option variable records a true-or-false condition, give it a
142name that ends in @samp{-flag}.
143
144@item
145If the purpose of a variable is to store a single function, give it a
146name that ends in @samp{-function}. If the purpose of a variable is
147to store a list of functions (i.e., the variable is a hook), please
148follow the naming conventions for hooks. @xref{Hooks}.
149
150@item
151@cindex unloading packages, preparing for
152If loading the file adds functions to hooks, define a function
153@code{@var{feature}-unload-hook}, where @var{feature} is the name of
154the feature the package provides, and make it undo any such changes.
155Using @code{unload-feature} to unload the file will run this function.
156@xref{Unloading}.
157
158@item
159It is a bad idea to define aliases for the Emacs primitives. Normally
160you should use the standard names instead. The case where an alias
161may be useful is where it facilitates backwards compatibility or
162portability.
163
164@item
165If a package needs to define an alias or a new function for
166compatibility with some other version of Emacs, name it with the package
167prefix, not with the raw name with which it occurs in the other version.
168Here is an example from Gnus, which provides many examples of such
169compatibility issues.
170
171@example
172(defalias 'gnus-point-at-bol
173 (if (fboundp 'point-at-bol)
174 'point-at-bol
175 'line-beginning-position))
176@end example
177
178@item
179Redefining (or advising) an Emacs primitive is a bad idea. It may do
180the right thing for a particular program, but there is no telling what
181other programs might break as a result. In any case, it is a problem
182for debugging, because the advised function doesn't do what its source
183code says it does. If the programmer investigating the problem is
184unaware that there is advice on the function, the experience can be
185very frustrating.
186
187We hope to remove all the places in Emacs that advise primitives.
188In the mean time, please don't add any more.
189
190@item
191It is likewise a bad idea for one Lisp package to advise a function
192in another Lisp package.
193
194@item
195Likewise, avoid using @code{eval-after-load} (@pxref{Hooks for
196Loading}) in libraries and packages. This feature is meant for
197personal customizations; using it in a Lisp program is unclean,
198because it modifies the behavior of another Lisp file in a way that's
199not visible in that file. This is an obstacle for debugging, much
200like advising a function in the other package.
201
202@item
203If a file does replace any of the functions or library programs of
204standard Emacs, prominent comments at the beginning of the file should
205say which functions are replaced, and how the behavior of the
206replacements differs from that of the originals.
207
208@item
209Constructs that define a function or variable should be macros,
210not functions, and their names should start with @samp{def}.
211
212@item
213A macro that defines a function or variable should have a name that
214starts with @samp{define-}. The macro should receive the name to be
215defined as the first argument. That will help various tools find the
216definition automatically. Avoid constructing the names in the macro
217itself, since that would confuse these tools.
218
219@item
220Please keep the names of your Emacs Lisp source files to 13 characters
221or less. This way, if the files are compiled, the compiled files' names
222will be 14 characters or less, which is short enough to fit on all kinds
223of Unix systems.
224
225@item
226In some other systems there is a convention of choosing variable names
227that begin and end with @samp{*}. We don't use that convention in Emacs
228Lisp, so please don't use it in your programs. (Emacs uses such names
229only for special-purpose buffers.) The users will find Emacs more
230coherent if all libraries use the same conventions.
231
232@item
233If your program contains non-ASCII characters in string or character
234constants, you should make sure Emacs always decodes these characters
235the same way, regardless of the user's settings. There are two ways
236to do that:
237
238@itemize -
239@item
240Use coding system @code{emacs-mule}, and specify that for
241@code{coding} in the @samp{-*-} line or the local variables list.
242
243@example
244;; XXX.el -*- coding: emacs-mule; -*-
245@end example
246
247@item
248Use one of the coding systems based on ISO 2022 (such as
249iso-8859-@var{n} and iso-2022-7bit), and specify it with @samp{!} at
250the end for @code{coding}. (The @samp{!} turns off any possible
251character translation.)
252
253@example
254;; XXX.el -*- coding: iso-latin-2!; -*-
255@end example
256@end itemize
257
258@item
259Indent each function with @kbd{C-M-q} (@code{indent-sexp}) using the
260default indentation parameters.
261
262@item
263Don't make a habit of putting close-parentheses on lines by themselves;
264Lisp programmers find this disconcerting. Once in a while, when there
265is a sequence of many consecutive close-parentheses, it may make sense
266to split the sequence in one or two significant places.
267
268@item
269Please put a copyright notice and copying permission notice on the
270file if you distribute copies. Use a notice like this one:
271
272@smallexample
273;; Copyright (C) @var{year} @var{name}
274
275;; This program is free software; you can redistribute it and/or
276;; modify it under the terms of the GNU General Public License as
277;; published by the Free Software Foundation; either version 3 of
278;; the License, or (at your option) any later version.
279
280;; This program is distributed in the hope that it will be
281;; useful, but WITHOUT ANY WARRANTY; without even the implied
282;; warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
283;; PURPOSE. See the GNU General Public License for more details.
284
285;; You should have received a copy of the GNU General Public
286;; License along with this program; if not, write to the Free
287;; Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
288;; Boston, MA 02110-1301 USA
289@end smallexample
290
291If you have signed papers to assign the copyright to the Foundation,
292then use @samp{Free Software Foundation, Inc.} as @var{name}.
293Otherwise, use your name. See also @xref{Library Headers}.
294@end itemize
295
296@node Key Binding Conventions
297@section Key Binding Conventions
298@cindex key binding, conventions for
299
300@itemize @bullet
301@item
302@cindex mouse-2
303@cindex references, following
304Special major modes used for read-only text should usually redefine
305@kbd{mouse-2} and @key{RET} to trace some sort of reference in the text.
306Modes such as Dired, Info, Compilation, and Occur redefine it in this
307way.
308
309In addition, they should mark the text as a kind of ``link'' so that
310@kbd{mouse-1} will follow it also. @xref{Links and Mouse-1}.
311
312@item
313@cindex reserved keys
314@cindex keys, reserved
315Please do not define @kbd{C-c @var{letter}} as a key in Lisp programs.
316Sequences consisting of @kbd{C-c} and a letter (either upper or lower
317case) are reserved for users; they are the @strong{only} sequences
318reserved for users, so do not block them.
319
320Changing all the Emacs major modes to respect this convention was a
321lot of work; abandoning this convention would make that work go to
322waste, and inconvenience users. Please comply with it.
323
324@item
325Function keys @key{F5} through @key{F9} without modifier keys are
326also reserved for users to define.
327
328@item
329Applications should not bind mouse events based on button 1 with the
330shift key held down. These events include @kbd{S-mouse-1},
331@kbd{M-S-mouse-1}, @kbd{C-S-mouse-1}, and so on. They are reserved for
332users.
333
334@item
335Sequences consisting of @kbd{C-c} followed by a control character or a
336digit are reserved for major modes.
337
338@item
339Sequences consisting of @kbd{C-c} followed by @kbd{@{}, @kbd{@}},
340@kbd{<}, @kbd{>}, @kbd{:} or @kbd{;} are also reserved for major modes.
341
342@item
343Sequences consisting of @kbd{C-c} followed by any other punctuation
344character are allocated for minor modes. Using them in a major mode is
345not absolutely prohibited, but if you do that, the major mode binding
346may be shadowed from time to time by minor modes.
347
348@item
349Do not bind @kbd{C-h} following any prefix character (including
350@kbd{C-c}). If you don't bind @kbd{C-h}, it is automatically available
351as a help character for listing the subcommands of the prefix character.
352
353@item
354Do not bind a key sequence ending in @key{ESC} except following
355another @key{ESC}. (That is, it is OK to bind a sequence ending in
356@kbd{@key{ESC} @key{ESC}}.)
357
358The reason for this rule is that a non-prefix binding for @key{ESC} in
359any context prevents recognition of escape sequences as function keys in
360that context.
361
362@item
363Anything which acts like a temporary mode or state which the user can
364enter and leave should define @kbd{@key{ESC} @key{ESC}} or
365@kbd{@key{ESC} @key{ESC} @key{ESC}} as a way to escape.
366
367For a state which accepts ordinary Emacs commands, or more generally any
368kind of state in which @key{ESC} followed by a function key or arrow key
369is potentially meaningful, then you must not define @kbd{@key{ESC}
370@key{ESC}}, since that would preclude recognizing an escape sequence
371after @key{ESC}. In these states, you should define @kbd{@key{ESC}
372@key{ESC} @key{ESC}} as the way to escape. Otherwise, define
373@kbd{@key{ESC} @key{ESC}} instead.
374@end itemize
375
376@node Programming Tips
377@section Emacs Programming Tips
378@cindex programming conventions
379
380 Following these conventions will make your program fit better
381into Emacs when it runs.
382
383@itemize @bullet
384@item
385Don't use @code{next-line} or @code{previous-line} in programs; nearly
386always, @code{forward-line} is more convenient as well as more
387predictable and robust. @xref{Text Lines}.
388
389@item
390Don't call functions that set the mark, unless setting the mark is one
391of the intended features of your program. The mark is a user-level
392feature, so it is incorrect to change the mark except to supply a value
393for the user's benefit. @xref{The Mark}.
394
395In particular, don't use any of these functions:
396
397@itemize @bullet
398@item
399@code{beginning-of-buffer}, @code{end-of-buffer}
400@item
401@code{replace-string}, @code{replace-regexp}
402@item
403@code{insert-file}, @code{insert-buffer}
404@end itemize
405
406If you just want to move point, or replace a certain string, or insert
407a file or buffer's contents, without any of the other features
408intended for interactive users, you can replace these functions with
409one or two lines of simple Lisp code.
410
411@item
412Use lists rather than vectors, except when there is a particular reason
413to use a vector. Lisp has more facilities for manipulating lists than
414for vectors, and working with lists is usually more convenient.
415
416Vectors are advantageous for tables that are substantial in size and are
417accessed in random order (not searched front to back), provided there is
418no need to insert or delete elements (only lists allow that).
419
420@item
421The recommended way to show a message in the echo area is with
422the @code{message} function, not @code{princ}. @xref{The Echo Area}.
423
424@item
425When you encounter an error condition, call the function @code{error}
426(or @code{signal}). The function @code{error} does not return.
427@xref{Signaling Errors}.
428
429Do not use @code{message}, @code{throw}, @code{sleep-for},
430or @code{beep} to report errors.
431
432@item
433An error message should start with a capital letter but should not end
434with a period.
435
436@item
437A question asked in the minibuffer with @code{y-or-n-p} or
438@code{yes-or-no-p} should start with a capital letter and end with
439@samp{? }.
440
441@item
442When you mention a default value in a minibuffer prompt,
443put it and the word @samp{default} inside parentheses.
444It should look like this:
445
446@example
447Enter the answer (default 42):
448@end example
449
450@item
451In @code{interactive}, if you use a Lisp expression to produce a list
452of arguments, don't try to provide the ``correct'' default values for
453region or position arguments. Instead, provide @code{nil} for those
454arguments if they were not specified, and have the function body
455compute the default value when the argument is @code{nil}. For
456instance, write this:
457
458@example
459(defun foo (pos)
460 (interactive
461 (list (if @var{specified} @var{specified-pos})))
462 (unless pos (setq pos @var{default-pos}))
463 ...)
464@end example
465
466@noindent
467rather than this:
468
469@example
470(defun foo (pos)
471 (interactive
472 (list (if @var{specified} @var{specified-pos}
473 @var{default-pos})))
474 ...)
475@end example
476
477@noindent
478This is so that repetition of the command will recompute
479these defaults based on the current circumstances.
480
481You do not need to take such precautions when you use interactive
482specs @samp{d}, @samp{m} and @samp{r}, because they make special
483arrangements to recompute the argument values on repetition of the
484command.
485
486@item
487Many commands that take a long time to execute display a message that
488says something like @samp{Operating...} when they start, and change it to
489@samp{Operating...done} when they finish. Please keep the style of
490these messages uniform: @emph{no} space around the ellipsis, and
491@emph{no} period after @samp{done}.
492
493@item
494Try to avoid using recursive edits. Instead, do what the Rmail @kbd{e}
495command does: use a new local keymap that contains one command defined
496to switch back to the old local keymap. Or do what the
497@code{edit-options} command does: switch to another buffer and let the
498user switch back at will. @xref{Recursive Editing}.
499@end itemize
500
501@node Compilation Tips
502@section Tips for Making Compiled Code Fast
503@cindex execution speed
504@cindex speedups
505
506 Here are ways of improving the execution speed of byte-compiled
507Lisp programs.
508
509@itemize @bullet
510@item
511@cindex profiling
512@cindex timing programs
513@cindex @file{elp.el}
514Profile your program with the @file{elp} library. See the file
515@file{elp.el} for instructions.
516
517@item
518@cindex @file{benchmark.el}
519@cindex benchmarking
520Check the speed of individual Emacs Lisp forms using the
521@file{benchmark} library. See the functions @code{benchmark-run} and
522@code{benchmark-run-compiled} in @file{benchmark.el}.
523
524@item
525Use iteration rather than recursion whenever possible.
526Function calls are slow in Emacs Lisp even when a compiled function
527is calling another compiled function.
528
529@item
530Using the primitive list-searching functions @code{memq}, @code{member},
531@code{assq}, or @code{assoc} is even faster than explicit iteration. It
532can be worth rearranging a data structure so that one of these primitive
533search functions can be used.
534
535@item
536Certain built-in functions are handled specially in byte-compiled code,
537avoiding the need for an ordinary function call. It is a good idea to
538use these functions rather than alternatives. To see whether a function
539is handled specially by the compiler, examine its @code{byte-compile}
540property. If the property is non-@code{nil}, then the function is
541handled specially.
542
543For example, the following input will show you that @code{aref} is
544compiled specially (@pxref{Array Functions}):
545
546@example
547@group
548(get 'aref 'byte-compile)
549 @result{} byte-compile-two-args
550@end group
551@end example
552
553@item
554If calling a small function accounts for a substantial part of your
555program's running time, make the function inline. This eliminates
556the function call overhead. Since making a function inline reduces
557the flexibility of changing the program, don't do it unless it gives
558a noticeable speedup in something slow enough that users care about
559the speed. @xref{Inline Functions}.
560@end itemize
561
562@node Warning Tips
563@section Tips for Avoiding Compiler Warnings
564@cindex byte compiler warnings, how to avoid
565
566@itemize @bullet
567@item
568Try to avoid compiler warnings about undefined free variables, by adding
569dummy @code{defvar} definitions for these variables, like this:
570
571@example
572(defvar foo)
573@end example
574
575Such a definition has no effect except to tell the compiler
576not to warn about uses of the variable @code{foo} in this file.
577
578@item
579If you use many functions and variables from a certain file, you can
580add a @code{require} for that package to avoid compilation warnings
581for them. For instance,
582
583@example
584(eval-when-compile
585 (require 'foo))
586@end example
587
588@item
589If you bind a variable in one function, and use it or set it in
590another function, the compiler warns about the latter function unless
591the variable has a definition. But adding a definition would be
592unclean if the variable has a short name, since Lisp packages should
593not define short variable names. The right thing to do is to rename
594this variable to start with the name prefix used for the other
595functions and variables in your package.
596
597@item
598The last resort for avoiding a warning, when you want to do something
599that usually is a mistake but it's not a mistake in this one case,
600is to put a call to @code{with-no-warnings} around it.
601@end itemize
602
603@node Documentation Tips
604@section Tips for Documentation Strings
605@cindex documentation strings, conventions and tips
606
607@findex checkdoc-minor-mode
608 Here are some tips and conventions for the writing of documentation
609strings. You can check many of these conventions by running the command
610@kbd{M-x checkdoc-minor-mode}.
611
612@itemize @bullet
613@item
614Every command, function, or variable intended for users to know about
615should have a documentation string.
616
617@item
618An internal variable or subroutine of a Lisp program might as well have
619a documentation string. In earlier Emacs versions, you could save space
620by using a comment instead of a documentation string, but that is no
621longer the case---documentation strings now take up very little space in
622a running Emacs.
623
624@item
625Format the documentation string so that it fits in an Emacs window on an
62680-column screen. It is a good idea for most lines to be no wider than
62760 characters. The first line should not be wider than 67 characters
628or it will look bad in the output of @code{apropos}.
629
630You can fill the text if that looks good. However, rather than blindly
631filling the entire documentation string, you can often make it much more
632readable by choosing certain line breaks with care. Use blank lines
633between topics if the documentation string is long.
634
635@item
636The first line of the documentation string should consist of one or two
637complete sentences that stand on their own as a summary. @kbd{M-x
638apropos} displays just the first line, and if that line's contents don't
639stand on their own, the result looks bad. In particular, start the
640first line with a capital letter and end with a period.
641
642For a function, the first line should briefly answer the question,
643``What does this function do?'' For a variable, the first line should
644briefly answer the question, ``What does this value mean?''
645
646Don't limit the documentation string to one line; use as many lines as
647you need to explain the details of how to use the function or
648variable. Please use complete sentences for the rest of the text too.
649
650@item
651When the user tries to use a disabled command, Emacs displays just the
652first paragraph of its documentation string---everything through the
653first blank line. If you wish, you can choose which information to
654include before the first blank line so as to make this display useful.
655
656@item
657The first line should mention all the important arguments of the
658function, and should mention them in the order that they are written
659in a function call. If the function has many arguments, then it is
660not feasible to mention them all in the first line; in that case, the
661first line should mention the first few arguments, including the most
662important arguments.
663
664@item
665When a function's documentation string mentions the value of an argument
666of the function, use the argument name in capital letters as if it were
667a name for that value. Thus, the documentation string of the function
668@code{eval} refers to its second argument as @samp{FORM}, because the
669actual argument name is @code{form}:
670
671@example
672Evaluate FORM and return its value.
673@end example
674
675Also write metasyntactic variables in capital letters, such as when you
676show the decomposition of a list or vector into subunits, some of which
677may vary. @samp{KEY} and @samp{VALUE} in the following example
678illustrate this practice:
679
680@example
681The argument TABLE should be an alist whose elements
682have the form (KEY . VALUE). Here, KEY is ...
683@end example
684
685@item
686Never change the case of a Lisp symbol when you mention it in a doc
687string. If the symbol's name is @code{foo}, write ``foo,'' not
688``Foo'' (which is a different symbol).
689
690This might appear to contradict the policy of writing function
691argument values, but there is no real contradiction; the argument
692@emph{value} is not the same thing as the @emph{symbol} which the
693function uses to hold the value.
694
695If this puts a lower-case letter at the beginning of a sentence
696and that annoys you, rewrite the sentence so that the symbol
697is not at the start of it.
698
699@item
700Do not start or end a documentation string with whitespace.
701
702@item
703@strong{Do not} indent subsequent lines of a documentation string so
704that the text is lined up in the source code with the text of the first
705line. This looks nice in the source code, but looks bizarre when users
706view the documentation. Remember that the indentation before the
707starting double-quote is not part of the string!
708
709@anchor{Docstring hyperlinks}
710@item
711@iftex
712When a documentation string refers to a Lisp symbol, write it as it
713would be printed (which usually means in lower case), with single-quotes
714around it. For example: @samp{`lambda'}. There are two exceptions:
715write @code{t} and @code{nil} without single-quotes.
716@end iftex
717@ifnottex
718When a documentation string refers to a Lisp symbol, write it as it
719would be printed (which usually means in lower case), with single-quotes
720around it. For example: @samp{lambda}. There are two exceptions: write
721t and nil without single-quotes. (In this manual, we use a different
722convention, with single-quotes for all symbols.)
723@end ifnottex
724
725@cindex hyperlinks in documentation strings
726Help mode automatically creates a hyperlink when a documentation string
727uses a symbol name inside single quotes, if the symbol has either a
728function or a variable definition. You do not need to do anything
729special to make use of this feature. However, when a symbol has both a
730function definition and a variable definition, and you want to refer to
731just one of them, you can specify which one by writing one of the words
732@samp{variable}, @samp{option}, @samp{function}, or @samp{command},
733immediately before the symbol name. (Case makes no difference in
734recognizing these indicator words.) For example, if you write
735
736@example
737This function sets the variable `buffer-file-name'.
738@end example
739
740@noindent
741then the hyperlink will refer only to the variable documentation of
742@code{buffer-file-name}, and not to its function documentation.
743
744If a symbol has a function definition and/or a variable definition, but
745those are irrelevant to the use of the symbol that you are documenting,
746you can write the words @samp{symbol} or @samp{program} before the
747symbol name to prevent making any hyperlink. For example,
748
749@example
750If the argument KIND-OF-RESULT is the symbol `list',
751this function returns a list of all the objects
752that satisfy the criterion.
753@end example
754
755@noindent
756does not make a hyperlink to the documentation, irrelevant here, of the
757function @code{list}.
758
759Normally, no hyperlink is made for a variable without variable
760documentation. You can force a hyperlink for such variables by
761preceding them with one of the words @samp{variable} or
762@samp{option}.
763
764Hyperlinks for faces are only made if the face name is preceded or
765followed by the word @samp{face}. In that case, only the face
766documentation will be shown, even if the symbol is also defined as a
767variable or as a function.
768
769To make a hyperlink to Info documentation, write the name of the Info
770node (or anchor) in single quotes, preceded by @samp{info node},
771@samp{Info node}, @samp{info anchor} or @samp{Info anchor}. The Info
772file name defaults to @samp{emacs}. For example,
773
774@smallexample
775See Info node `Font Lock' and Info node `(elisp)Font Lock Basics'.
776@end smallexample
777
778Finally, to create a hyperlink to URLs, write the URL in single
779quotes, preceded by @samp{URL}. For example,
780
781@smallexample
782The home page for the GNU project has more information (see URL
783`http://www.gnu.org/').
784@end smallexample
785
786@item
787Don't write key sequences directly in documentation strings. Instead,
788use the @samp{\\[@dots{}]} construct to stand for them. For example,
789instead of writing @samp{C-f}, write the construct
790@samp{\\[forward-char]}. When Emacs displays the documentation string,
791it substitutes whatever key is currently bound to @code{forward-char}.
792(This is normally @samp{C-f}, but it may be some other character if the
793user has moved key bindings.) @xref{Keys in Documentation}.
794
795@item
796In documentation strings for a major mode, you will want to refer to the
797key bindings of that mode's local map, rather than global ones.
798Therefore, use the construct @samp{\\<@dots{}>} once in the
799documentation string to specify which key map to use. Do this before
800the first use of @samp{\\[@dots{}]}. The text inside the
801@samp{\\<@dots{}>} should be the name of the variable containing the
802local keymap for the major mode.
803
804It is not practical to use @samp{\\[@dots{}]} very many times, because
805display of the documentation string will become slow. So use this to
806describe the most important commands in your major mode, and then use
807@samp{\\@{@dots{}@}} to display the rest of the mode's keymap.
808
809@item
810For consistency, phrase the verb in the first sentence of a function's
811documentation string as an imperative---for instance, use ``Return the
812cons of A and B.'' in preference to ``Returns the cons of A and B@.''
813Usually it looks good to do likewise for the rest of the first
814paragraph. Subsequent paragraphs usually look better if each sentence
815is indicative and has a proper subject.
816
817@item
818The documentation string for a function that is a yes-or-no predicate
819should start with words such as ``Return t if,'' to indicate
820explicitly what constitutes ``truth.'' The word ``return'' avoids
821starting the sentence with lower-case ``t,'' which could be somewhat
822distracting.
823
824@item
825If a line in a documentation string begins with an open-parenthesis,
826write a backslash before the open-parenthesis, like this:
827
828@example
829The argument FOO can be either a number
830\(a buffer position) or a string (a file name).
831@end example
832
833This prevents the open-parenthesis from being treated as the start of a
834defun (@pxref{Defuns,, Defuns, emacs, The GNU Emacs Manual}).
835
836@item
837Write documentation strings in the active voice, not the passive, and in
838the present tense, not the future. For instance, use ``Return a list
839containing A and B.'' instead of ``A list containing A and B will be
840returned.''
841
842@item
843Avoid using the word ``cause'' (or its equivalents) unnecessarily.
844Instead of, ``Cause Emacs to display text in boldface,'' write just
845``Display text in boldface.''
846
847@item
848Avoid using ``iff'' (a mathematics term meaning ``if and only if''),
849since many people are unfamiliar with it and mistake it for a typo. In
850most cases, the meaning is clear with just ``if''. Otherwise, try to
851find an alternate phrasing that conveys the meaning.
852
853@item
854When a command is meaningful only in a certain mode or situation,
855do mention that in the documentation string. For example,
856the documentation of @code{dired-find-file} is:
857
858@example
859In Dired, visit the file or directory named on this line.
860@end example
861
862@item
863When you define a variable that users ought to set interactively, you
864normally should use @code{defcustom}. However, if for some reason you
865use @code{defvar} instead, start the doc string with a @samp{*}.
866@xref{Defining Variables}.
867
868@item
869The documentation string for a variable that is a yes-or-no flag should
870start with words such as ``Non-nil means,'' to make it clear that
871all non-@code{nil} values are equivalent and indicate explicitly what
872@code{nil} and non-@code{nil} mean.
873@end itemize
874
875@node Comment Tips
876@section Tips on Writing Comments
877@cindex comments, Lisp convention for
878
879 We recommend these conventions for where to put comments and how to
880indent them:
881
882@table @samp
883@item ;
884Comments that start with a single semicolon, @samp{;}, should all be
885aligned to the same column on the right of the source code. Such
886comments usually explain how the code on the same line does its job. In
887Lisp mode and related modes, the @kbd{M-;} (@code{indent-for-comment})
888command automatically inserts such a @samp{;} in the right place, or
889aligns such a comment if it is already present.
890
891This and following examples are taken from the Emacs sources.
892
893@smallexample
894@group
895(setq base-version-list ; there was a base
896 (assoc (substring fn 0 start-vn) ; version to which
897 file-version-assoc-list)) ; this looks like
898 ; a subversion
899@end group
900@end smallexample
901
902@item ;;
903Comments that start with two semicolons, @samp{;;}, should be aligned to
904the same level of indentation as the code. Such comments usually
905describe the purpose of the following lines or the state of the program
906at that point. For example:
907
908@smallexample
909@group
910(prog1 (setq auto-fill-function
911 @dots{}
912 @dots{}
913 ;; update mode line
914 (force-mode-line-update)))
915@end group
916@end smallexample
917
918We also normally use two semicolons for comments outside functions.
919
920@smallexample
921@group
922;; This Lisp code is run in Emacs
923;; when it is to operate as a server
924;; for other processes.
925@end group
926@end smallexample
927
928Every function that has no documentation string (presumably one that is
929used only internally within the package it belongs to), should instead
930have a two-semicolon comment right before the function, explaining what
931the function does and how to call it properly. Explain precisely what
932each argument means and how the function interprets its possible values.
933
934@item ;;;
935Comments that start with three semicolons, @samp{;;;}, should start at
936the left margin. These are used, occasionally, for comments within
937functions that should start at the margin. We also use them sometimes
938for comments that are between functions---whether to use two or three
939semicolons depends on whether the comment should be considered a
940``heading'' by Outline minor mode. By default, comments starting with
941at least three semicolons (followed by a single space and a
942non-whitespace character) are considered headings, comments starting
943with two or less are not.
944
945Another use for triple-semicolon comments is for commenting out lines
946within a function. We use three semicolons for this precisely so that
947they remain at the left margin. By default, Outline minor mode does
948not consider a comment to be a heading (even if it starts with at
949least three semicolons) if the semicolons are followed by at least two
950spaces. Thus, if you add an introductory comment to the commented out
951code, make sure to indent it by at least two spaces after the three
952semicolons.
953
954@smallexample
955(defun foo (a)
956;;; This is no longer necessary.
957;;; (force-mode-line-update)
958 (message "Finished with %s" a))
959@end smallexample
960
961When commenting out entire functions, use two semicolons.
962
963@item ;;;;
964Comments that start with four semicolons, @samp{;;;;}, should be aligned
965to the left margin and are used for headings of major sections of a
966program. For example:
967
968@smallexample
969;;;; The kill ring
970@end smallexample
971@end table
972
973@noindent
974The indentation commands of the Lisp modes in Emacs, such as @kbd{M-;}
975(@code{indent-for-comment}) and @key{TAB} (@code{lisp-indent-line}),
976automatically indent comments according to these conventions,
977depending on the number of semicolons. @xref{Comments,,
978Manipulating Comments, emacs, The GNU Emacs Manual}.
979
980@node Library Headers
981@section Conventional Headers for Emacs Libraries
982@cindex header comments
983@cindex library header comments
984
985 Emacs has conventions for using special comments in Lisp libraries
986to divide them into sections and give information such as who wrote
987them. This section explains these conventions.
988
989 We'll start with an example, a package that is included in the Emacs
990distribution.
991
992 Parts of this example reflect its status as part of Emacs; for
993example, the copyright notice lists the Free Software Foundation as the
994copyright holder, and the copying permission says the file is part of
995Emacs. When you write a package and post it, the copyright holder would
996be you (unless your employer claims to own it instead), and you should
997get the suggested copying permission from the end of the GNU General
998Public License itself. Don't say your file is part of Emacs
999if we haven't installed it in Emacs yet!
1000
1001 With that warning out of the way, on to the example:
1002
1003@smallexample
1004@group
1005;;; lisp-mnt.el --- minor mode for Emacs Lisp maintainers
1006
1007;; Copyright (C) 1992 Free Software Foundation, Inc.
1008@end group
1009
1010;; Author: Eric S. Raymond <esr@@snark.thyrsus.com>
1011;; Maintainer: Eric S. Raymond <esr@@snark.thyrsus.com>
1012;; Created: 14 Jul 1992
1013;; Version: 1.2
1014@group
1015;; Keywords: docs
1016
1017;; This file is part of GNU Emacs.
1018@dots{}
1019;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
1020;; Boston, MA 02110-1301, USA.
1021@end group
1022@end smallexample
1023
1024 The very first line should have this format:
1025
1026@example
1027;;; @var{filename} --- @var{description}
1028@end example
1029
1030@noindent
1031The description should be complete in one line. If the file
1032needs a @samp{-*-} specification, put it after @var{description}.
1033
1034 After the copyright notice come several @dfn{header comment} lines,
1035each beginning with @samp{;; @var{header-name}:}. Here is a table of
1036the conventional possibilities for @var{header-name}:
1037
1038@table @samp
1039@item Author
1040This line states the name and net address of at least the principal
1041author of the library.
1042
1043If there are multiple authors, you can list them on continuation lines
1044led by @code{;;} and a tab character, like this:
1045
1046@smallexample
1047@group
1048;; Author: Ashwin Ram <Ram-Ashwin@@cs.yale.edu>
1049;; Dave Sill <de5@@ornl.gov>
1050;; Dave Brennan <brennan@@hal.com>
1051;; Eric Raymond <esr@@snark.thyrsus.com>
1052@end group
1053@end smallexample
1054
1055@item Maintainer
1056This line should contain a single name/address as in the Author line, or
1057an address only, or the string @samp{FSF}. If there is no maintainer
1058line, the person(s) in the Author field are presumed to be the
1059maintainers. The example above is mildly bogus because the maintainer
1060line is redundant.
1061
1062The idea behind the @samp{Author} and @samp{Maintainer} lines is to make
1063possible a Lisp function to ``send mail to the maintainer'' without
1064having to mine the name out by hand.
1065
1066Be sure to surround the network address with @samp{<@dots{}>} if
1067you include the person's full name as well as the network address.
1068
1069@item Created
1070This optional line gives the original creation date of the
1071file. For historical interest only.
1072
1073@item Version
1074If you wish to record version numbers for the individual Lisp program, put
1075them in this line.
1076
1077@item Adapted-By
1078In this header line, place the name of the person who adapted the
1079library for installation (to make it fit the style conventions, for
1080example).
1081
1082@item Keywords
1083This line lists keywords for the @code{finder-by-keyword} help command.
1084Please use that command to see a list of the meaningful keywords.
1085
1086This field is important; it's how people will find your package when
1087they're looking for things by topic area. To separate the keywords, you
1088can use spaces, commas, or both.
1089@end table
1090
1091 Just about every Lisp library ought to have the @samp{Author} and
1092@samp{Keywords} header comment lines. Use the others if they are
1093appropriate. You can also put in header lines with other header
1094names---they have no standard meanings, so they can't do any harm.
1095
1096 We use additional stylized comments to subdivide the contents of the
1097library file. These should be separated by blank lines from anything
1098else. Here is a table of them:
1099
1100@table @samp
1101@item ;;; Commentary:
1102This begins introductory comments that explain how the library works.
1103It should come right after the copying permissions, terminated by a
1104@samp{Change Log}, @samp{History} or @samp{Code} comment line. This
1105text is used by the Finder package, so it should make sense in that
1106context.
1107
1108@item ;;; Documentation:
1109This was used in some files in place of @samp{;;; Commentary:},
1110but it is deprecated.
1111
1112@item ;;; Change Log:
1113This begins change log information stored in the library file (if you
1114store the change history there). For Lisp files distributed with Emacs,
1115the change history is kept in the file @file{ChangeLog} and not in the
1116source file at all; these files generally do not have a @samp{;;; Change
1117Log:} line. @samp{History} is an alternative to @samp{Change Log}.
1118
1119@item ;;; Code:
1120This begins the actual code of the program.
1121
1122@item ;;; @var{filename} ends here
1123This is the @dfn{footer line}; it appears at the very end of the file.
1124Its purpose is to enable people to detect truncated versions of the file
1125from the lack of a footer line.
1126@end table
1127
1128@ignore
1129 arch-tag: 9ea911c2-6b1d-47dd-88b7-0a94e8b27c2e
1130@end ignore