diff options
| author | Eli Zaretskii | 2008-10-15 20:20:39 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2008-10-15 20:20:39 +0000 |
| commit | 2c30e468e99076baf9a9217c2dae5e7b3908c314 (patch) | |
| tree | 1524d3a01a01c12df5c341e9dc7293805b1e05cf | |
| parent | 66e3cca6f38c77031a10564f6e50d7bbdfccb252 (diff) | |
| download | emacs-2c30e468e99076baf9a9217c2dae5e7b3908c314.tar.gz emacs-2c30e468e99076baf9a9217c2dae5e7b3908c314.zip | |
(Writing Emacs Primitives): The interactive spec of a primitive can be
a Lisp form.
| -rw-r--r-- | doc/lispref/internals.texi | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/lispref/internals.texi b/doc/lispref/internals.texi index c977b2e549f..75a4f49144d 100644 --- a/doc/lispref/internals.texi +++ b/doc/lispref/internals.texi | |||
| @@ -592,7 +592,8 @@ This is an interactive specification, a string such as might be used as | |||
| 592 | the argument of @code{interactive} in a Lisp function. In the case of | 592 | the argument of @code{interactive} in a Lisp function. In the case of |
| 593 | @code{or}, it is 0 (a null pointer), indicating that @code{or} cannot be | 593 | @code{or}, it is 0 (a null pointer), indicating that @code{or} cannot be |
| 594 | called interactively. A value of @code{""} indicates a function that | 594 | called interactively. A value of @code{""} indicates a function that |
| 595 | should receive no arguments when called interactively. | 595 | should receive no arguments when called interactively. If the value |
| 596 | begins with a @samp{(}, the string is evaluated as a Lisp form. | ||
| 596 | 597 | ||
| 597 | @item doc | 598 | @item doc |
| 598 | This is the documentation string. It uses C comment syntax rather | 599 | This is the documentation string. It uses C comment syntax rather |