aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2004-05-29 15:41:06 +0000
committerRichard M. Stallman2004-05-29 15:41:06 +0000
commit4d3867280ea96cd6252ea3f8e21d038a298f8d7e (patch)
tree28007ff76b66faac9ef41a05a909a62b5820d610
parent657962fc48b822102fa587d9d9b8db4ca701b876 (diff)
downloademacs-4d3867280ea96cd6252ea3f8e21d038a298f8d7e.tar.gz
emacs-4d3867280ea96cd6252ea3f8e21d038a298f8d7e.zip
(Minor Mode Conventions): (-) has no special meaning
as arg to a minor mode command.
-rw-r--r--lispref/modes.texi5
1 files changed, 3 insertions, 2 deletions
diff --git a/lispref/modes.texi b/lispref/modes.texi
index d92ea309ed7..040c229bb00 100644
--- a/lispref/modes.texi
+++ b/lispref/modes.texi
@@ -879,8 +879,9 @@ The command should accept one optional argument. If the argument is
879off if it is on). It should turn the mode on if the argument is a 879off if it is on). It should turn the mode on if the argument is a
880positive integer, the symbol @code{t}, or a list whose @sc{car} is one 880positive integer, the symbol @code{t}, or a list whose @sc{car} is one
881of those. It should turn the mode off if the argument is a negative 881of those. It should turn the mode off if the argument is a negative
882integer or zero, the symbol @code{-}, or a list whose @sc{car} is one 882integer or zero, the symbol @code{-}, or a list whose @sc{car} is a
883of those. The meaning of other arguments is not specified. 883negative integer or zero. The meaning of other arguments is not
884specified.
884 885
885Here is an example taken from the definition of @code{transient-mark-mode}. 886Here is an example taken from the definition of @code{transient-mark-mode}.
886It shows the use of @code{transient-mark-mode} as a variable that enables or 887It shows the use of @code{transient-mark-mode} as a variable that enables or