prev UP NEXT GNU Emacs Lisp Reference Manual

21.1: Documentation Basics

A documentation string is written using the Lisp syntax for strings, with double-quote characters surrounding the text of the string. This is because it really is a Lisp string object. The string serves as documentation when it is written in the proper place in the definition of a function or variable. In a function definition, the documentation string follows the argument list. In a variable definition, the documentation string follows the initial value of the variable.

When you write a documentation string, make the first line a complete sentence (or two complete sentences) since some commands, such as apropos, show only the first line of a multi-line documentation string. Also, you should not indent the second line of a documentation string, if you have one, because that looks odd when you use C-h f (describe-function) or C-h v (describe-variable). See Documentation Tips.

Documentation strings may contain several special substrings, which stand for key bindings to be looked up in the current keymaps when the documentation is displayed. This allows documentation strings to refer to the keys for related commands and be accurate even when a user rearranges the key bindings. (See Accessing Documentation.)

Within the Lisp world, a documentation string accessible through the function or variable that it describes:

  • The documentation for a function is stored in the function definition itself (see Lambda Expressions). The function documentation knows how to extract it.
  • The documentation for a variable is stored in the variable's property list under the property name variable-documentation. The function documentation-property knows how to extract it.

To save space, the documentation for preloaded functions and variables (including primitive functions and autoloaded functions) is stored in the file `emacs/etc/DOC-version'. The documentation for functions and variables loaded during the Emacs session from byte-compiled files is stored in those files (see Docs and Compilation).

The data structure inside Emacs has an integer offset into the file, or a list containing a string and an integer, in place of the documentation string. The functions documentation and documentation-property use that information to read the documentation from the appropriate file; this is transparent to the user.

For information on the uses of documentation strings, see Help.

The `emacs/lib-src' directory contains two utilities that you can use to print nice-looking hardcopy for the file `emacs/etc/DOC-version'. These are `sorted-doc.c' and `digest-doc.c'.