]> git.eshelyaron.com Git - emacs.git/commitdiff
(global-font-lock-mode): Doc fix.
authorDave Love <fx@gnu.org>
Tue, 27 Apr 1999 18:55:02 +0000 (18:55 +0000)
committerDave Love <fx@gnu.org>
Tue, 27 Apr 1999 18:55:02 +0000 (18:55 +0000)
lisp/font-lock.el

index 48c69183ee1853fbb8b765cbb03e718717262fb7..d3498a888a52478822dd497e1b10d35464b408dc 100644 (file)
@@ -835,15 +835,15 @@ turned on in a buffer if its major mode is one of `font-lock-global-modes'."
       (message "Global Font Lock mode %s." (if on-p "enabled" "disabled")))
     (setq global-font-lock-mode on-p)))
 
-;; Naughty hack.  This variable was originally a `defvar' to keep track of
+;; 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.
 (defcustom global-font-lock-mode nil
   "Toggle Global Font Lock mode.
 When Global Font Lock mode is enabled, Font Lock mode is automagically
 turned on in a buffer if its major mode is one of `font-lock-global-modes'.
-This variable should be set only with \\[customize], which is equivalent
-to using the function `global-font-lock-mode'."
+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)))
   :type 'boolean