summaryrefslogtreecommitdiff
path: root/lisp/whitespace.el
diff options
context:
space:
mode:
authorDmitry Gutov <dgutov@yandex.ru>2013-03-19 19:12:40 +0400
committerDmitry Gutov <dgutov@yandex.ru>2013-03-19 19:12:40 +0400
commitc128ab07ce58406bbadae797459ab84cf48ff441 (patch)
tree12bd8e91c6478b3821580144ae1ecabad24acce1 /lisp/whitespace.el
parentcf4bb06de4057d96fb1725615e5cf2c288fc3199 (diff)
downloademacs-c128ab07ce58406bbadae797459ab84cf48ff441.tar.gz
* lisp/whitespace.el (whitespace-font-lock, whitespace-font-lock-mode):
Remove vars. (whitespace-color-on, whitespace-color-off): Use `font-lock-fontify-buffer'. Fixes: debbugs:13817
Diffstat (limited to 'lisp/whitespace.el')
-rw-r--r--lisp/whitespace.el23
1 files changed, 2 insertions, 21 deletions
diff --git a/lisp/whitespace.el b/lisp/whitespace.el
index 0346d17954a..c32155f5430 100644
--- a/lisp/whitespace.el
+++ b/lisp/whitespace.el
@@ -1861,12 +1861,6 @@ cleaning up these problems."
;;;; Internal functions
-(defvar whitespace-font-lock-mode nil
- "Used to remember whether a buffer had font lock mode on or not.")
-
-(defvar whitespace-font-lock nil
- "Used to remember whether a buffer initially had font lock on or not.")
-
(defvar whitespace-font-lock-keywords nil
"Used to save the value `whitespace-color-on' adds to `font-lock-keywords'.")
@@ -2106,8 +2100,6 @@ resultant list will be returned."
;; prepare local hooks
(add-hook 'write-file-functions 'whitespace-write-file-hook nil t)
;; create whitespace local buffer environment
- (set (make-local-variable 'whitespace-font-lock-mode) nil)
- (set (make-local-variable 'whitespace-font-lock) nil)
(set (make-local-variable 'whitespace-font-lock-keywords) nil)
(set (make-local-variable 'whitespace-display-table) nil)
(set (make-local-variable 'whitespace-display-table-was-local) nil)
@@ -2157,8 +2149,6 @@ resultant list will be returned."
(defun whitespace-color-on ()
"Turn on color visualization."
(when (whitespace-style-face-p)
- (unless whitespace-font-lock
- (setq whitespace-font-lock t))
;; save current point and refontify when necessary
(set (make-local-variable 'whitespace-point)
(point))
@@ -2172,10 +2162,6 @@ resultant list will be returned."
nil)
(add-hook 'post-command-hook #'whitespace-post-command-hook nil t)
(add-hook 'before-change-functions #'whitespace-buffer-changed nil t)
- ;; turn off font lock
- (set (make-local-variable 'whitespace-font-lock-mode)
- font-lock-mode)
- (font-lock-mode 0)
;; Add whitespace-mode color into font lock.
(setq
whitespace-font-lock-keywords
@@ -2257,22 +2243,17 @@ resultant list will be returned."
(whitespace-space-after-tab-regexp 'space)))
1 whitespace-space-after-tab t)))))
(font-lock-add-keywords nil whitespace-font-lock-keywords t)
- ;; Now turn on font lock and highlight blanks.
- (font-lock-mode 1)))
+ (font-lock-fontify-buffer)))
(defun whitespace-color-off ()
"Turn off color visualization."
;; turn off font lock
(when (whitespace-style-face-p)
- (font-lock-mode 0)
(remove-hook 'post-command-hook #'whitespace-post-command-hook t)
(remove-hook 'before-change-functions #'whitespace-buffer-changed t)
- (when whitespace-font-lock
- (setq whitespace-font-lock nil))
(font-lock-remove-keywords nil whitespace-font-lock-keywords)
- ;; restore original font lock state
- (font-lock-mode whitespace-font-lock-mode)))
+ (font-lock-fontify-buffer)))
(defun whitespace-trailing-regexp (limit)