1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 04:10:54 -08:00

(global-font-lock-mode): Enable `global-font-lock-mode' by default,

except in batch mode or when the -D command line option is given.
This commit is contained in:
Luc Teirlinck 2005-11-05 23:07:40 +00:00
parent 0ceed14b2e
commit 00fe0acef4

View file

@ -293,7 +293,9 @@ means that Font Lock mode is turned on for buffers in C and C++ modes only."
(easy-mmode-define-global-mode
global-font-lock-mode font-lock-mode turn-on-font-lock-if-enabled
:extra-args (dummy))
:extra-args (dummy)
:initialize 'custom-initialize-safe-default
:init-value (not (or noninteractive emacs-basic-display)))
;;; End of Global Font Lock mode.