1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-23 07:19:15 +00:00

(font-lock-mode): Replace :group font-lock' with nil nil nil'.

This commit is contained in:
Juri Linkov 2005-12-04 05:46:18 +00:00
parent 030a17b937
commit 9324f6715a
2 changed files with 2 additions and 1 deletions

View File

@ -7,6 +7,7 @@
* font-core.el (global-font-lock-mode): Use define-global-minor-mode
instead of easy-mmode-define-global-mode. Add `:group font-lock'.
(font-lock-mode): Replace `:group font-lock' with `nil nil nil'.
* font-lock.el (lisp-font-lock-keywords-1):
Add define-global-minor-mode.

View File

@ -146,7 +146,7 @@ buffer local value for `font-lock-defaults', via its mode hook.
The above is the default behavior of `font-lock-mode'; you may specify
your own function which is called when `font-lock-mode' is toggled via
`font-lock-function'. "
:group 'font-lock
nil nil nil
;; Don't turn on Font Lock mode if we don't have a display (we're running a
;; batch job) or if the buffer is invisible (the name starts with a space).
(when (or noninteractive (eq (aref (buffer-name) 0) ?\ ))