summaryrefslogtreecommitdiff
path: root/doc/lispref/commands.texi
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2014-03-21 00:06:55 -0700
committerGlenn Morris <rgm@gnu.org>2014-03-21 00:06:55 -0700
commit9ee59bca7ae0ca23a1c7ee3653601b6d8c52b529 (patch)
tree7b13f4e26f60c70573459ea17c0d9dc18a544585 /doc/lispref/commands.texi
parentf167458b5ec8e09baed154d12efa5b70cf1ad9d4 (diff)
downloademacs-9ee59bca7ae0ca23a1c7ee3653601b6d8c52b529.tar.gz
* lispref/commands.texi (Defining Commands): Copyedit re `interactive-only'.
Diffstat (limited to 'doc/lispref/commands.texi')
-rw-r--r--doc/lispref/commands.texi9
1 files changed, 4 insertions, 5 deletions
diff --git a/doc/lispref/commands.texi b/doc/lispref/commands.texi
index 5c28522158a..198926a9a6a 100644
--- a/doc/lispref/commands.texi
+++ b/doc/lispref/commands.texi
@@ -123,11 +123,10 @@ value for this property takes precedence over any @code{interactive}
form in the function body itself. This feature is seldom used.
@cindex @code{interactive-only} property
- Sometimes, a named command is only intended to be called
-interactively, never directly from Lisp. In that case, give it a
-non-@code{nil} @code{interactive-only} property. In that case, the
-byte compiler will print a warning message if the command is called
-from Lisp.
+ Sometimes, a function is only intended to be called interactively,
+never directly from Lisp. In that case, give the function a
+non-@code{nil} @code{interactive-only} property. This causes the
+byte compiler to warn if the command is called from Lisp.
@menu
* Using Interactive:: General rules for @code{interactive}.