diff options
author | Richard M. Stallman <rms@gnu.org> | 2004-05-29 15:41:06 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2004-05-29 15:41:06 +0000 |
commit | 4d3867280ea96cd6252ea3f8e21d038a298f8d7e (patch) | |
tree | 28007ff76b66faac9ef41a05a909a62b5820d610 /lispref/modes.texi | |
parent | 657962fc48b822102fa587d9d9b8db4ca701b876 (diff) | |
download | emacs-4d3867280ea96cd6252ea3f8e21d038a298f8d7e.tar.gz |
(Minor Mode Conventions): (-) has no special meaning
as arg to a minor mode command.
Diffstat (limited to 'lispref/modes.texi')
-rw-r--r-- | lispref/modes.texi | 5 |
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 off if it is on). It should turn the mode on if the argument is a positive integer, the symbol @code{t}, or a list whose @sc{car} is one of those. It should turn the mode off if the argument is a negative -integer or zero, the symbol @code{-}, or a list whose @sc{car} is one -of those. The meaning of other arguments is not specified. +integer or zero, the symbol @code{-}, or a list whose @sc{car} is a +negative integer or zero. The meaning of other arguments is not +specified. Here is an example taken from the definition of @code{transient-mark-mode}. It shows the use of @code{transient-mark-mode} as a variable that enables or |