aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2008-10-15 20:20:39 +0000
committerEli Zaretskii2008-10-15 20:20:39 +0000
commit2c30e468e99076baf9a9217c2dae5e7b3908c314 (patch)
tree1524d3a01a01c12df5c341e9dc7293805b1e05cf
parent66e3cca6f38c77031a10564f6e50d7bbdfccb252 (diff)
downloademacs-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.texi3
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
592the argument of @code{interactive} in a Lisp function. In the case of 592the 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
594called interactively. A value of @code{""} indicates a function that 594called interactively. A value of @code{""} indicates a function that
595should receive no arguments when called interactively. 595should receive no arguments when called interactively. If the value
596begins with a @samp{(}, the string is evaluated as a Lisp form.
596 597
597@item doc 598@item doc
598This is the documentation string. It uses C comment syntax rather 599This is the documentation string. It uses C comment syntax rather