]> code.delx.au - gnu-emacs-elpa/commitdiff
Be more careful when disabling/enabling font-lock.
authorJackson Ray Hamilton <jackson@jacksonrayhamilton.com>
Tue, 3 May 2016 05:03:50 +0000 (22:03 -0700)
committerJackson Ray Hamilton <jackson@jacksonrayhamilton.com>
Tue, 3 May 2016 05:03:50 +0000 (22:03 -0700)
context-coloring.el

index a20bfa6a110a5043fa74f9eb62ff15ab8e0b155c..9c2be910346cdab0819e00ffccecefd268b58803 100644 (file)
@@ -419,16 +419,15 @@ Feature inspired by Douglas Crockford."
   nil " Context" nil
   (cond
    (context-coloring-mode
-    ;; Font lock is incompatible with this mode; the converse is also true.
-    (font-lock-mode 0)
-    (jit-lock-mode nil)
-    ;; ...but we do use font-lock functions here.
-    (font-lock-set-defaults)
-    ;; Safely change the value of this function as necessary.
-    (make-local-variable 'font-lock-syntactic-face-function)
     (let ((dispatch (context-coloring-get-current-dispatch)))
       (cond
        (dispatch
+        ;; Font lock is incompatible with this mode; the converse is also true.
+        (font-lock-mode 0)
+        ;; ...but we do use font-lock functions here.
+        (font-lock-set-defaults)
+        ;; Safely change the value of this function as necessary.
+        (make-local-variable 'font-lock-syntactic-face-function)
         (let ((setup (plist-get dispatch :setup)))
           (when setup
             (funcall setup))
@@ -443,8 +442,7 @@ Feature inspired by Douglas Crockford."
         (let ((teardown (plist-get dispatch :teardown)))
           (when teardown
             (funcall teardown)))))
-    (font-lock-mode)
-    (jit-lock-mode t))))
+    (turn-on-font-lock-if-desired))))
 
 (provide 'context-coloring)