1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-29 19:48:19 +00:00

(Documentation Basics): Add function-documentation prop.

This commit is contained in:
Richard M. Stallman 2005-02-26 23:57:40 +00:00
parent 79a6c76c3d
commit 1e04ba2c90

View File

@ -66,9 +66,13 @@ function or variable that it describes:
@itemize @bullet
@item
The documentation for a function is stored in the function definition
itself (@pxref{Lambda Expressions}). The function @code{documentation}
knows how to extract it.
@kindex function-documentation
The documentation for a function is usually stored in the function
definition itself (@pxref{Lambda Expressions}). The function
@code{documentation} knows how to extract it. You can also put
function documentation in the @code{function-documentation} property
of the function name. That is useful with definitions such as
keyboard macros that can't hold a documentation string.
@item
@kindex variable-documentation