(pc:*:*:*): New entry, for DJGPP.
[emacs.git] / lispref / tips.texi
blobd36ef12a08ccd94146cdd77572953c9de02090b2
1 @c -*-texinfo-*-
2 @c This is part of the GNU Emacs Lisp Reference Manual.
3 @c Copyright (C) 1990, 1991, 1992, 1993 Free Software Foundation, Inc. 
4 @c See the file elisp.texi for copying conditions.
5 @setfilename ../info/tips
6 @node Tips, GNU Emacs Internals, Calendar, Top
7 @appendix Tips and Conventions
8 @cindex tips
9 @cindex standards of coding style
10 @cindex coding standards
12   This chapter describes no additional features of Emacs Lisp.  Instead
13 it gives advice on making effective use of the features described in the
14 previous chapters, and describes conventions Emacs Lisp programmers
15 should follow.
17 @menu
18 * Coding Conventions::        Conventions for clean and robust programs.
19 * Compilation Tips::          Making compiled code run fast.
20 * Documentation Tips::        Writing readable documentation strings.
21 * Comment Tips::              Conventions for writing comments.
22 * Library Headers::           Standard headers for library packages.
23 @end menu
25 @node Coding Conventions
26 @section Emacs Lisp Coding Conventions
28   Here are conventions that you should follow when writing Emacs Lisp
29 code intended for widespread use:
31 @itemize @bullet
32 @item
33 Since all global variables share the same name space, and all functions
34 share another name space, you should choose a short word to distinguish
35 your program from other Lisp programs.  Then take care to begin the
36 names of all global variables, constants, and functions with the chosen
37 prefix.  This helps avoid name conflicts.
39 This recommendation applies even to names for traditional Lisp
40 primitives that are not primitives in Emacs Lisp---even to @code{cadr}.
41 Believe it or not, there is more than one plausible way to define
42 @code{cadr}.  Play it safe; append your name prefix to produce a name
43 like @code{foo-cadr} or @code{mylib-cadr} instead.
45 If you write a function that you think ought to be added to Emacs under
46 a certain name, such as @code{twiddle-files}, don't call it by that name
47 in your program.  Call it @code{mylib-twiddle-files} in your program,
48 and send mail to @samp{bug-gnu-emacs@@prep.ai.mit.edu} suggesting we add
49 it to Emacs.  If and when we do, we can change the name easily enough.
51 If one prefix is insufficient, your package may use two or three
52 alternative common prefixes, so long as they make sense.
54 Separate the prefix from the rest of the symbol name with a hyphen,
55 @samp{-}.  This will be consistent with Emacs itself and with most Emacs
56 Lisp programs.
58 @item
59 It is often useful to put a call to @code{provide} in each separate
60 library program, at least if there is more than one entry point to the
61 program.
63 @item
64 If a file requires certain other library programs to be loaded
65 beforehand, then the comments at the beginning of the file should say
66 so.  Also, use @code{require} to make sure they are loaded.
68 @item
69 If one file @var{foo} uses a macro defined in another file @var{bar},
70 @var{foo} should contain this expression before the first use of the
71 macro:
73 @example
74 (eval-when-compile (require '@var{bar}))
75 @end example
77 @noindent
78 (And @var{bar} should contain @code{(provide '@var{bar})}, to make the
79 @code{require} work.)  This will cause @var{bar} to be loaded when you
80 byte-compile @var{foo}.  Otherwise, you risk compiling @var{foo} without
81 the necessary macro loaded, and that would produce compiled code that
82 won't work right.  @xref{Compiling Macros}.
84 Using @code{eval-when-compile} avoids loading @var{bar} when
85 the compiled version of @var{foo} is @emph{used}.
87 @item
88 When defining a major mode, please follow the major mode
89 conventions.  @xref{Major Mode Conventions}.
91 @item
92 When defining a minor mode, please follow the minor mode
93 conventions.  @xref{Minor Mode Conventions}.
95 @item
96 If the purpose of a function is to tell you whether a certain condition
97 is true or false, give the function a name that ends in @samp{p}.  If
98 the name is one word, add just @samp{p}; if the name is multiple words,
99 add @samp{-p}.  Examples are @code{framep} and @code{frame-live-p}.
101 @item
102 If a user option variable records a true-or-false condition, give it a
103 name that ends in @samp{-flag}.
105 @item
106 Please do not define @kbd{C-c @var{letter}} as a key in your major
107 modes.  These sequences are reserved for users; they are the
108 @strong{only} sequences reserved for users, so we cannot do without
109 them.
111 Instead, define sequences consisting of @kbd{C-c} followed by a control
112 character, a digit, or certain punctuation characters.  These sequences
113 are reserved for major modes.
115 Changing all the major modes in Emacs 18 so they would follow this
116 convention was a lot of work.  Abandoning this convention would make
117 that work go to waste, and inconvenience users.
119 @item
120 Sequences consisting of @kbd{C-c} followed by @kbd{@{}, @kbd{@}},
121 @kbd{<}, @kbd{>}, @kbd{:} or @kbd{;} are also reserved for major modes.
123 @item
124 Sequences consisting of @kbd{C-c} followed by any other punctuation
125 character are allocated for minor modes.  Using them in a major mode is
126 not absolutely prohibited, but if you do that, the major mode binding
127 may be shadowed from time to time by minor modes.
129 @item
130 You should not bind @kbd{C-h} following any prefix character (including
131 @kbd{C-c}).  If you don't bind @kbd{C-h}, it is automatically available
132 as a help character for listing the subcommands of the prefix character.
134 @item
135 You should not bind a key sequence ending in @key{ESC} except following
136 another @key{ESC}.  (That is, it is ok to bind a sequence ending in
137 @kbd{@key{ESC} @key{ESC}}.)
139 The reason for this rule is that a non-prefix binding for @key{ESC} in
140 any context prevents recognition of escape sequences as function keys in
141 that context.
143 @item
144 Applications should not bind mouse events based on button 1 with the
145 shift key held down.  These events include @kbd{S-mouse-1},
146 @kbd{M-S-mouse-1}, @kbd{C-S-mouse-1}, and so on.  They are reserved for
147 users.
149 @item
150 Modes should redefine @kbd{mouse-2} as a command to follow some sort of
151 reference in the text of a buffer, if users usually would not want to
152 alter the text in that buffer by hand.  Modes such as Dired, Info,
153 Compilation, and Occur redefine it in this way.
155 @item
156 When a package provides a modification of ordinary Emacs behavior, it is
157 good to include a command to enable and disable the feature, Provide a
158 command named @code{@var{whatever}-mode} which turns the feature on or
159 off, and make it autoload (@pxref{Autoload}).  Design the package so
160 that simply loading it has no visible effect---that should not enable
161 the feature.  Users will request the feature by invoking the command.
163 @item
164 It is a bad idea to define aliases for the Emacs primitives.  Use the
165 standard names instead.
167 @item
168 Redefining (or advising) an Emacs primitive is discouraged.  It may do
169 the right thing for a particular program, but there is no telling what
170 other programs might break as a result.
172 @item
173 If a file does replace any of the functions or library programs of
174 standard Emacs, prominent comments at the beginning of the file should
175 say which functions are replaced, and how the behavior of the
176 replacements differs from that of the originals.
178 @item
179 Please keep the names of your Emacs Lisp source files to 13 characters
180 or less.  This way, if the files are compiled, the compiled files' names
181 will be 14 characters or less, which is short enough to fit on all kinds
182 of Unix systems.
184 @item
185 Don't use @code{next-line} or @code{previous-line} in programs; nearly
186 always, @code{forward-line} is more convenient as well as more
187 predictable and robust.  @xref{Text Lines}.
189 @item
190 Don't call functions that set the mark, unless setting the mark is one
191 of the intended features of your program.  The mark is a user-level
192 feature, so it is incorrect to change the mark except to supply a value
193 for the user's benefit.  @xref{The Mark}.
195 In particular, don't use these functions:
197 @itemize @bullet
198 @item
199 @code{beginning-of-buffer}, @code{end-of-buffer}
200 @item
201 @code{replace-string}, @code{replace-regexp}
202 @end itemize
204 If you just want to move point, or replace a certain string, without any
205 of the other features intended for interactive users, you can replace
206 these functions with one or two lines of simple Lisp code.
208 @item
209 Use lists rather than vectors, except when there is a particular reason
210 to use a vector.  Lisp has more facilities for manipulating lists than
211 for vectors, and working with lists is usually more convenient.
213 Vectors are advantageous for tables that are substantial in size and are
214 accessed in random order (not searched front to back), provided there is
215 no need to insert or delete elements (only lists allow that).
217 @item
218 The recommended way to print a message in the echo area is with
219 the @code{message} function, not @code{princ}.  @xref{The Echo Area}.
221 @item
222 When you encounter an error condition, call the function @code{error}
223 (or @code{signal}).  The function @code{error} does not return.
224 @xref{Signaling Errors}.
226 Do not use @code{message}, @code{throw}, @code{sleep-for},
227 or @code{beep} to report errors.
229 @item
230 An error message should start with a capital letter but should not end
231 with a period.
233 @item
234 Many commands that take a long time to execute display a message that
235 says @samp{Operating...} when they start, and change it to
236 @samp{Operating...done} when they finish.  Please keep the style of
237 these messages uniform: @emph{no} space around the ellipsis, and
238 @emph{no} period at the end.
240 @item
241 Try to avoid using recursive edits.  Instead, do what the Rmail @kbd{e}
242 command does: use a new local keymap that contains one command defined
243 to switch back to the old local keymap.  Or do what the
244 @code{edit-options} command does: switch to another buffer and let the
245 user switch back at will.  @xref{Recursive Editing}.
247 @item
248 In some other systems there is a convention of choosing variable names
249 that begin and end with @samp{*}.  We don't use that convention in Emacs
250 Lisp, so please don't use it in your programs.  (Emacs uses such names
251 only for program-generated buffers.)  The users will find Emacs more
252 coherent if all libraries use the same conventions.
254 @item
255 Try to avoid compiler warnings about undefined free variables, by adding
256 @code{defvar} definitions for these variables.
258 If you bind a variable in one function, and use it or set it in another
259 function, the compiler warns about the latter function unless the
260 variable has a definition.  But often these variables have short names,
261 and it is not clean for Lisp packages to define such variables names.
262 Therefore, you should rename the variable to start with the name prefix
263 used for the other functions and variables in your package.
265 @item
266 Indent each function with @kbd{C-M-q} (@code{indent-sexp}) using the
267 default indentation parameters.
269 @item
270 Don't make a habit of putting close-parentheses on lines by themselves;
271 Lisp programmers find this disconcerting.  Once in a while, when there
272 is a sequence of many consecutive close-parentheses, it may make sense
273 to split them in one or two significant places.
275 @item
276 Please put a copyright notice on the file if you give copies to anyone.
277 Use the same lines that appear at the top of the Lisp files in Emacs
278 itself.  If you have not signed papers to assign the copyright to the
279 Foundation, then place your name in the copyright notice in place of the
280 Foundation's name.
281 @end itemize
283 @node Compilation Tips
284 @section Tips for Making Compiled Code Fast
285 @cindex execution speed
286 @cindex speedups
288   Here are ways of improving the execution speed of byte-compiled
289 Lisp programs.
291 @itemize @bullet
292 @item
293 @cindex profiling
294 @cindex timing programs
295 @cindex @file{profile.el}
296 Use the @file{profile} library to profile your program.  See the file
297 @file{profile.el} for instructions.
299 @item
300 Use iteration rather than recursion whenever possible.
301 Function calls are slow in Emacs Lisp even when a compiled function
302 is calling another compiled function.
304 @item
305 Using the primitive list-searching functions @code{memq}, @code{member},
306 @code{assq}, or @code{assoc} is even faster than explicit iteration.  It
307 may be worth rearranging a data structure so that one of these primitive
308 search functions can be used.
310 @item
311 Certain built-in functions are handled specially in byte-compiled code, 
312 avoiding the need for an ordinary function call.  It is a good idea to
313 use these functions rather than alternatives.  To see whether a function
314 is handled specially by the compiler, examine its @code{byte-compile}
315 property.  If the property is non-@code{nil}, then the function is
316 handled specially.
318 For example, the following input will show you that @code{aref} is
319 compiled specially (@pxref{Array Functions}) while @code{elt} is not
320 (@pxref{Sequence Functions}):
322 @example
323 @group
324 (get 'aref 'byte-compile)
325      @result{} byte-compile-two-args
326 @end group
328 @group
329 (get 'elt 'byte-compile)
330      @result{} nil
331 @end group
332 @end example
334 @item
335 If calling a small function accounts for a  substantial part of your
336 program's running time, make the function inline.  This eliminates
337 the function call overhead.  Since making a function inline reduces
338 the flexibility of changing the program, don't do it unless it gives
339 a noticeable speedup in something slow enough that users care about
340 the speed.  @xref{Inline Functions}.
341 @end itemize
343 @node Documentation Tips
344 @section Tips for Documentation Strings
346   Here are some tips for the writing of documentation strings.
348 @itemize @bullet
349 @item
350 Every command, function, or variable intended for users to know about
351 should have a documentation string.
353 @item
354 An internal variable or subroutine of a Lisp program might as well have
355 a documentation string.  In earlier Emacs versions, you could save space
356 by using a comment instead of a documentation string, but that is no
357 longer the case.
359 @item
360 The first line of the documentation string should consist of one or two
361 complete sentences that stand on their own as a summary.  @kbd{M-x
362 apropos} displays just the first line, and if it doesn't stand on its
363 own, the result looks bad.  In particular, start the first line with a
364 capital letter and end with a period.
366 The documentation string can have additional lines that expand on the
367 details of how to use the function or variable.  The additional lines
368 should be made up of complete sentences also, but they may be filled if
369 that looks good.
371 @item
372 For consistency, phrase the verb in the first sentence of a
373 documentation string as an infinitive with ``to'' omitted.  For
374 instance, use ``Return the cons of A and B.'' in preference to ``Returns
375 the cons of A and B@.''  Usually it looks good to do likewise for the
376 rest of the first paragraph.  Subsequent paragraphs usually look better
377 if they have proper subjects.
379 @item
380 Write documentation strings in the active voice, not the passive, and in
381 the present tense, not the future.  For instance, use ``Return a list
382 containing A and B.'' instead of ``A list containing A and B will be
383 returned.''
385 @item
386 Avoid using the word ``cause'' (or its equivalents) unnecessarily.
387 Instead of, ``Cause Emacs to display text in boldface,'' write just
388 ``Display text in boldface.''
390 @item
391 Do not start or end a documentation string with whitespace.
393 @item
394 Format the documentation string so that it fits in an Emacs window on an
395 80-column screen.  It is a good idea for most lines to be no wider than
396 60 characters.  The first line can be wider if necessary to fit the 
397 information that ought to be there.
399 However, rather than simply filling the entire documentation string, you
400 can make it much more readable by choosing line breaks with care.
401 Use blank lines between topics if the documentation string is long.
403 @item
404 @strong{Do not} indent subsequent lines of a documentation string so
405 that the text is lined up in the source code with the text of the first
406 line.  This looks nice in the source code, but looks bizarre when users
407 view the documentation.  Remember that the indentation before the
408 starting double-quote is not part of the string!
410 @item
411 When the user tries to use a disabled command, Emacs displays just the
412 first paragraph of its documentation string---everything through the
413 first blank line.  If you wish, you can choose which information to
414 include before the first blank line so as to make this display useful.
416 @item
417 A variable's documentation string should start with @samp{*} if the
418 variable is one that users would often want to set interactively.  If
419 the value is a long list, or a function, or if the variable would be set
420 only in init files, then don't start the documentation string with
421 @samp{*}.  @xref{Defining Variables}.
423 @item
424 The documentation string for a variable that is a yes-or-no flag should
425 start with words such as ``Non-nil means@dots{}'', to make it clear that
426 all non-@code{nil} values are equivalent and indicate explicitly what
427 @code{nil} and non-@code{nil} mean.
429 @item
430 When a function's documentation string mentions the value of an argument
431 of the function, use the argument name in capital letters as if it were
432 a name for that value.  Thus, the documentation string of the function
433 @code{/} refers to its second argument as @samp{DIVISOR}, because the
434 actual argument name is @code{divisor}.
436 Also use all caps for meta-syntactic variables, such as when you show
437 the decomposition of a list or vector into subunits, some of which may
438 vary.
440 @item
441 @iftex
442 When a documentation string refers to a Lisp symbol, write it as it
443 would be printed (which usually means in lower case), with single-quotes
444 around it.  For example: @samp{`lambda'}.  There are two exceptions:
445 write @code{t} and @code{nil} without single-quotes.
446 @end iftex
447 @ifinfo
448 When a documentation string refers to a Lisp symbol, write it as it
449 would be printed (which usually means in lower case), with single-quotes
450 around it.  For example: @samp{lambda}.  There are two exceptions: write
451 t and nil without single-quotes.  (In this manual, we normally do use
452 single-quotes for those symbols.)
453 @end ifinfo
455 @item
456 Don't write key sequences directly in documentation strings.  Instead,
457 use the @samp{\\[@dots{}]} construct to stand for them.  For example,
458 instead of writing @samp{C-f}, write the construct
459 @samp{\\[forward-char]}.  When Emacs displays the documentation string,
460 it substitutes whatever key is currently bound to @code{forward-char}.
461 (This is normally @samp{C-f}, but it may be some other character if the
462 user has moved key bindings.)  @xref{Keys in Documentation}.
464 @item
465 In documentation strings for a major mode, you will want to refer to the
466 key bindings of that mode's local map, rather than global ones.
467 Therefore, use the construct @samp{\\<@dots{}>} once in the
468 documentation string to specify which key map to use.  Do this before
469 the first use of @samp{\\[@dots{}]}.  The text inside the
470 @samp{\\<@dots{}>} should be the name of the variable containing the
471 local keymap for the major mode.
473 It is not practical to use @samp{\\[@dots{}]} very many times, because
474 display of the documentation string will become slow.  So use this to
475 describe the most important commands in your major mode, and then use
476 @samp{\\@{@dots{}@}} to display the rest of the mode's keymap.
477 @end itemize
479 @node Comment Tips
480 @section Tips on Writing Comments
482   We recommend these conventions for where to put comments and how to
483 indent them:
485 @table @samp
486 @item ;
487 Comments that start with a single semicolon, @samp{;}, should all be
488 aligned to the same column on the right of the source code.  Such
489 comments usually explain how the code on the same line does its job.  In
490 Lisp mode and related modes, the @kbd{M-;} (@code{indent-for-comment})
491 command automatically inserts such a @samp{;} in the right place, or
492 aligns such a comment if it is already present.
494 This and following examples are taken from the Emacs sources.
496 @smallexample
497 @group
498 (setq base-version-list                 ; there was a base
499       (assoc (substring fn 0 start-vn)  ; version to which
500              file-version-assoc-list))  ; this looks like
501                                         ; a subversion
502 @end group
503 @end smallexample
505 @item ;;
506 Comments that start with two semicolons, @samp{;;}, should be aligned to
507 the same level of indentation as the code.  Such comments usually
508 describe the purpose of the following lines or the state of the program
509 at that point.  For example:
511 @smallexample
512 @group
513 (prog1 (setq auto-fill-function
514              @dots{}
515              @dots{}
516   ;; update mode line
517   (force-mode-line-update)))
518 @end group
519 @end smallexample
521 Every function that has no documentation string (because it is use only
522 internally within the package it belongs to), should have instead a
523 two-semicolon comment right before the function, explaining what the
524 function does and how to call it properly.  Explain precisely what each
525 argument means and how the function interprets its possible values.
527 @item ;;;
528 Comments that start with three semicolons, @samp{;;;}, should start at
529 the left margin.  Such comments are used outside function definitions to
530 make general statements explaining the design principles of the program.
531 For example:
533 @smallexample
534 @group
535 ;;; This Lisp code is run in Emacs
536 ;;; when it is to operate as a server
537 ;;; for other processes.
538 @end group
539 @end smallexample
541 Another use for triple-semicolon comments is for commenting out lines
542 within a function.  We use triple-semicolons for this precisely so that
543 they remain at the left margin.
545 @smallexample
546 (defun foo (a)
547 ;;; This is no longer necessary.
548 ;;;  (force-mode-line-update)
549   (message "Finished with %s" a))
550 @end smallexample
552 @item ;;;;
553 Comments that start with four semicolons, @samp{;;;;}, should be aligned
554 to the left margin and are used for headings of major sections of a
555 program.  For example:
557 @smallexample
558 ;;;; The kill ring
559 @end smallexample
560 @end table
562 @noindent
563 The indentation commands of the Lisp modes in Emacs, such as @kbd{M-;}
564 (@code{indent-for-comment}) and @key{TAB} (@code{lisp-indent-line})
565 automatically indent comments according to these conventions,
566 depending on the number of semicolons.  @xref{Comments,,
567 Manipulating Comments, emacs, The GNU Emacs Manual}.
569 @node Library Headers
570 @section Conventional Headers for Emacs Libraries
571 @cindex header comments
572 @cindex library header comments
574   Emacs 19 has conventions for using special comments in Lisp libraries
575 to divide them into sections and give information such as who wrote
576 them.  This section explains these conventions.  First, an example:
578 @smallexample
579 @group
580 ;;; lisp-mnt.el --- minor mode for Emacs Lisp maintainers
582 ;; Copyright (C) 1992 Free Software Foundation, Inc.
583 @end group
585 ;; Author: Eric S. Raymond <esr@@snark.thyrsus.com>
586 ;; Maintainer: Eric S. Raymond <esr@@snark.thyrsus.com>
587 ;; Created: 14 Jul 1992
588 ;; Version: 1.2
589 @group
590 ;; Keywords: docs
592 ;; This file is part of GNU Emacs.
593 @var{copying permissions}@dots{}
594 @end group
595 @end smallexample
597   The very first line should have this format:
599 @example
600 ;;; @var{filename} --- @var{description}
601 @end example
603 @noindent
604 The description should be complete in one line.
606   After the copyright notice come several @dfn{header comment} lines,
607 each beginning with @samp{;; @var{header-name}:}.  Here is a table of
608 the conventional possibilities for @var{header-name}:
610 @table @samp
611 @item Author
612 This line states the name and net address of at least the principal
613 author of the library.
615 If there are multiple authors, you can list them on continuation lines
616 led by @code{;;} and a tab character, like this:
618 @smallexample
619 @group
620 ;; Author: Ashwin Ram <Ram-Ashwin@@cs.yale.edu>
621 ;;      Dave Sill <de5@@ornl.gov>
622 ;;      Dave Brennan <brennan@@hal.com>
623 ;;      Eric Raymond <esr@@snark.thyrsus.com>
624 @end group
625 @end smallexample
627 @item Maintainer
628 This line should contain a single name/address as in the Author line, or
629 an address only, or the string @samp{FSF}.  If there is no maintainer
630 line, the person(s) in the Author field are presumed to be the
631 maintainers.  The example above is mildly bogus because the maintainer
632 line is redundant.
634 The idea behind the @samp{Author} and @samp{Maintainer} lines is to make
635 possible a Lisp function to ``send mail to the maintainer'' without
636 having to mine the name out by hand.
638 Be sure to surround the network address with @samp{<@dots{}>} if
639 you include the person's full name as well as the network address.
641 @item Created
642 This optional line gives the original creation date of the
643 file.  For historical interest only.
645 @item Version
646 If you wish to record version numbers for the individual Lisp program, put
647 them in this line.
649 @item Adapted-By
650 In this header line, place the name of the person who adapted the
651 library for installation (to make it fit the style conventions, for
652 example).
654 @item Keywords
655 This line lists keywords for the @code{finder-by-keyword} help command.
656 This field is important; it's how people will find your package when
657 they're looking for things by topic area.  To separate the keywords, you
658 can use spaces, commas, or both.
659 @end table
661   Just about every Lisp library ought to have the @samp{Author} and
662 @samp{Keywords} header comment lines.  Use the others if they are
663 appropriate.  You can also put in header lines with other header
664 names---they have no standard meanings, so they can't do any harm.
666   We use additional stylized comments to subdivide the contents of the
667 library file.  Here is a table of them:
669 @table @samp
670 @item ;;; Commentary:
671 This begins introductory comments that explain how the library works.
672 It should come right after the copying permissions.
674 @item ;;; Change log:
675 This begins change log information stored in the library file (if you
676 store the change history there).  For most of the Lisp
677 files distributed with Emacs, the change history is kept in the file
678 @file{ChangeLog} and not in the source file at all; these files do
679 not have a @samp{;;; Change log:} line.
681 @item ;;; Code:
682 This begins the actual code of the program.
684 @item ;;; @var{filename} ends here
685 This is the @dfn{footer line}; it appears at the very end of the file.
686 Its purpose is to enable people to detect truncated versions of the file
687 from the lack of a footer line.
688 @end table