aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2014-03-22 14:41:31 -0700
committerGlenn Morris2014-03-22 14:41:31 -0700
commit4118be693dfc66e3640276e404012135ffbf07d4 (patch)
tree851c8714741bebc0c24673948ceb196d4b25091a
parenteb6f0d566374ccfac1a43028a7b2aa11d1ce655e (diff)
downloademacs-4118be693dfc66e3640276e404012135ffbf07d4.tar.gz
emacs-4118be693dfc66e3640276e404012135ffbf07d4.zip
* lispref/commands.texi (Defining Commands): Tweak previous change.
-rw-r--r--doc/lispref/commands.texi5
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/lispref/commands.texi b/doc/lispref/commands.texi
index 998f76cc3d0..38a6970e6f4 100644
--- a/doc/lispref/commands.texi
+++ b/doc/lispref/commands.texi
@@ -129,8 +129,9 @@ non-@code{nil} @code{interactive-only} property. This causes the
129byte compiler to warn if the command is called from Lisp. The value 129byte compiler to warn if the command is called from Lisp. The value
130of the property can be: a string, which the byte-compiler will 130of the property can be: a string, which the byte-compiler will
131use directly in its warning (it should end with a period, 131use directly in its warning (it should end with a period,
132and not start with a capital); @code{t}; any other symbol, which 132and not start with a capital, e.g. ``use @dots{} instead.''); @code{t};
133should be an alternative function to use in Lisp code. 133any other symbol, which should be an alternative function to use in
134Lisp code.
134 135
135@menu 136@menu
136* Using Interactive:: General rules for @code{interactive}. 137* Using Interactive:: General rules for @code{interactive}.