]> git.eshelyaron.com Git - emacs.git/commitdiff
(global-font-lock-mode): Use define-global-minor-mode
authorJuri Linkov <juri@jurta.org>
Sun, 4 Dec 2005 02:30:37 +0000 (02:30 +0000)
committerJuri Linkov <juri@jurta.org>
Sun, 4 Dec 2005 02:30:37 +0000 (02:30 +0000)
instead of easy-mmode-define-global-mode.  Add `:group font-lock'.
(font-lock-mode): Remove `:group font-lock'.

lisp/font-core.el

index 2f903acee6b08b67e0497fbc72790b3384aa9e89..5cfab04c956cbf7163e2162cc79c24a82db15a65 100644 (file)
@@ -146,7 +146,6 @@ 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
   ;; 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) ?\ ))
@@ -291,12 +290,13 @@ means that Font Lock mode is turned on for buffers in C and C++ modes only."
     (let (inhibit-quit)
       (turn-on-font-lock))))
 
-(easy-mmode-define-global-mode
- global-font-lock-mode font-lock-mode turn-on-font-lock-if-enabled
- :extra-args (dummy)
- :initialize 'custom-initialize-safe-default
- :init-value (not (or noninteractive emacs-basic-display))
- :version "22.1")
+(define-global-minor-mode global-font-lock-mode
+  font-lock-mode turn-on-font-lock-if-enabled
+  :extra-args (dummy)
+  :initialize 'custom-initialize-safe-default
+  :init-value (not (or noninteractive emacs-basic-display))
+  :group 'font-lock
+  :version "22.1")
 
 ;;; End of Global Font Lock mode.