changeset 53710:31ae933487b2

(font-lock): Add jit-lock as explicit group member. (jit-lock): Group declaration moved to jit-lock.el. (toplevel): Don't explicitly require jit-lock, since it's autoloaded when necessary.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Mon, 26 Jan 2004 23:03:43 +0000
parents f790b749630e
children 46adc18f9815
files lisp/font-lock.el
diffstat 1 files changed, 1 insertions(+), 11 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/font-lock.el	Mon Jan 26 22:56:09 2004 +0000
+++ b/lisp/font-lock.el	Mon Jan 26 23:03:43 2004 +0000
@@ -210,7 +210,7 @@
 (require 'syntax)
 
 ;; Define core `font-lock' group.
-(defgroup font-lock nil
+(defgroup font-lock '((jit-lock custom-group))
   "Font Lock mode text highlighting package."
   :link '(custom-manual "(emacs)Font Lock")
   :link '(custom-manual "(elisp)Font Lock Mode")
@@ -237,13 +237,6 @@
   :link '(custom-manual "(emacs)Support Modes")
   :load 'lazy-lock
   :group 'font-lock)
-
-(defgroup jit-lock nil
-  "Font Lock support mode to fontify just-in-time."
-  :link '(custom-manual "(emacs)Support Modes")
-  :version "21.1"
-  :load 'jit-lock
-  :group 'font-lock)
 
 ;; User variables.
 
@@ -1927,8 +1920,5 @@
 
 (provide 'font-lock)
 
-(when (eq font-lock-support-mode 'jit-lock-mode)
-  (require 'jit-lock))
-
 ;;; arch-tag: 682327e4-64d8-4057-b20b-1fbb9f1fc54c
 ;;; font-lock.el ends here