emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/emacs-23 r100097: Fix hi-lock-mode interact


From: Chong Yidong
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-23 r100097: Fix hi-lock-mode interactions with font-lock.
Date: Sat, 09 Oct 2010 00:09:19 -0400
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 100097
author: David Koppelman <address@hidden>
committer: Chong Yidong <address@hidden>
branch nick: emacs-23
timestamp: Sat 2010-10-09 00:09:19 -0400
message:
  Fix hi-lock-mode interactions with font-lock.
  * hi-lock.el (hi-lock-font-lock-hook): Check font-lock-fontified
  instead of font-lock-mode before adding keywords. Removed
  hi-lock-mode off code. Removed inhibit hack.
  (hi-lock-set-pattern): Only add keywords if font-lock-fontified
  non-nil; removed hook inhibit hack.
modified:
  lisp/ChangeLog
  lisp/hi-lock.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2010-10-09 00:44:53 +0000
+++ b/lisp/ChangeLog    2010-10-09 04:09:19 +0000
@@ -1,3 +1,11 @@
+2010-10-05  David Koppelman  <address@hidden>
+
+       * hi-lock.el (hi-lock-font-lock-hook): Check font-lock-fontified
+       instead of font-lock-mode before adding keywords. Removed
+       hi-lock-mode off code. Removed inhibit hack.
+       (hi-lock-set-pattern): Only add keywords if font-lock-fontified
+       non-nil; removed hook inhibit hack.
+
 2010-10-09  Glenn Morris  <address@hidden>
 
        * emacs-lisp/shadow.el (find-emacs-lisp-shadows): Rename it...

=== modified file 'lisp/hi-lock.el'
--- a/lisp/hi-lock.el   2010-01-13 08:35:10 +0000
+++ b/lisp/hi-lock.el   2010-10-09 04:09:19 +0000
@@ -564,23 +564,15 @@
            'face-name-history
           (cdr hi-lock-face-defaults))))
 
-(defvar hi-lock--inhibit-font-lock-hook nil
-  "Inhibit the action of `hi-lock-font-lock-hook'.
-This is used by `hi-lock-set-pattern'.")
-
 (defun hi-lock-set-pattern (regexp face)
   "Highlight REGEXP with face FACE."
-  (let ((pattern (list regexp (list 0 (list 'quote face) t)))
-       ;; The call to `font-lock-add-keywords' below might disable
-       ;; and re-enable font-lock mode.  If so, we don't want
-       ;; `hi-lock-font-lock-hook' to run.  This can be removed once
-       ;; Bug#635 is fixed. -- cyd
-       (hi-lock--inhibit-font-lock-hook t))
+  (let ((pattern (list regexp (list 0 (list 'quote face) t))))
     (unless (member pattern hi-lock-interactive-patterns)
-      (font-lock-add-keywords nil (list pattern) t)
       (push pattern hi-lock-interactive-patterns)
       (if font-lock-fontified
-          (font-lock-fontify-buffer)
+         (progn
+           (font-lock-add-keywords nil (list pattern) t)
+           (font-lock-fontify-buffer))
         (let* ((serial (hi-lock-string-serialize regexp))
                (range-min (- (point) (/ hi-lock-highlight-range 2)))
                (range-max (+ (point) (/ hi-lock-highlight-range 2)))
@@ -641,12 +633,9 @@
 
 (defun hi-lock-font-lock-hook ()
   "Add hi-lock patterns to font-lock's."
-  (unless hi-lock--inhibit-font-lock-hook
-    (if font-lock-mode
-       (progn
-         (font-lock-add-keywords nil hi-lock-file-patterns t)
-         (font-lock-add-keywords nil hi-lock-interactive-patterns t))
-      (hi-lock-mode -1))))
+  (when font-lock-fontified
+    (font-lock-add-keywords nil hi-lock-file-patterns t)
+    (font-lock-add-keywords nil hi-lock-interactive-patterns t)))
 
 (defvar hi-lock-string-serialize-hash
   (make-hash-table :test 'equal)


reply via email to

[Prev in Thread] Current Thread [Next in Thread]