diff options
author | Richard M. Stallman <rms@gnu.org> | 2007-01-05 19:12:37 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2007-01-05 19:12:37 +0000 |
commit | c5954f144d3bde2b0eed05b049fb691dbdd6f70d (patch) | |
tree | c6ccef9d6fd9516332f3b2cfe4a877a99f3a968c | |
parent | fb395c0fc4f29f275479e3207fbd406c1d77b4a3 (diff) | |
download | emacs-c5954f144d3bde2b0eed05b049fb691dbdd6f70d.tar.gz |
(Defining Minor Modes): Fix previous change.
-rw-r--r-- | lispref/modes.texi | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lispref/modes.texi b/lispref/modes.texi index c5fd0159ac2..b46c0c0e1a5 100644 --- a/lispref/modes.texi +++ b/lispref/modes.texi @@ -1487,7 +1487,9 @@ buffers. To turn on the minor mode in a buffer, it uses the function @minus{}1 as argument. Globally enabling the mode also affects buffers subsequently created -by visiting files, but not buffers subsequently created in other ways. +by visiting files, and buffers that use a major mode other than +Fundamental mode; but it does not detect the creation of a new buffer +in Fundamental mode. Use @code{:group @var{group}} in @var{keyword-args} to specify the custom group for the mode variable of the global minor mode. |