]> git.eshelyaron.com Git - emacs.git/commitdiff
(global-font-lock-mode): Autoload. Add :initialize.
authorDave Love <fx@gnu.org>
Thu, 19 Aug 1999 18:31:24 +0000 (18:31 +0000)
committerDave Love <fx@gnu.org>
Thu, 19 Aug 1999 18:31:24 +0000 (18:31 +0000)
lisp/font-lock.el

index 0bc70ea28099ff2be2be5ef6c4efc19bc1e7b3e9..bfc4a1460c6375a6073c9952965f008cf5e9979f 100644 (file)
@@ -846,6 +846,7 @@ turned on in a buffer if its major mode is one of `font-lock-global-modes'."
 ;; This variable was originally a `defvar' to keep track of
 ;; whether Global Font Lock mode was turned on or not.  As a `defcustom' with
 ;; special `:set' and `:require' forms, we can provide custom mode control.
+;;;###autoload
 (defcustom global-font-lock-mode nil
   "Toggle Global Font Lock mode.
 When Global Font Lock mode is enabled, Font Lock mode is automagically
@@ -854,6 +855,7 @@ Setting this variable directly does not take effect;
 use either \\[customize] or the function `global-font-lock-mode'."
   :set (lambda (symbol value)
         (global-font-lock-mode (or value 0)))
+  :initialize 'custom-initialize-default
   :type 'boolean
   :group 'font-lock
   :require 'font-lock)