diff options
author | Richard Hansen <rhansen@rhansen.org> | 2022-06-22 18:06:49 -0400 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2022-09-11 13:46:30 +0200 |
commit | b6da1e4221ae50fe75c246deafe9d2455d4ca558 (patch) | |
tree | d54955043ad15519f111e539690ce8119277a6ea /lisp/whitespace.el | |
parent | 10573e0db7789f933a578d9a89d18b83a1cf6729 (diff) | |
download | emacs-b6da1e4221ae50fe75c246deafe9d2455d4ca558.tar.gz |
; whitespace: Delete unused `whitespace-font-lock-refontify' var
Diffstat (limited to 'lisp/whitespace.el')
-rw-r--r-- | lisp/whitespace.el | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lisp/whitespace.el b/lisp/whitespace.el index 41b0a34f9ea..1d28ae2e1ca 100644 --- a/lisp/whitespace.el +++ b/lisp/whitespace.el @@ -1138,10 +1138,6 @@ Used by function `whitespace-trailing-regexp' (which see).") (defvar-local whitespace-point--used nil "Region whose highlighting depends on `whitespace-point'.") -(defvar whitespace-font-lock-refontify nil - "Used to save locally the font-lock refontify state. -Used by function `whitespace-post-command-hook' (which see).") - (defvar whitespace-bob-marker nil "Used to save locally the bob marker value. Used by function `whitespace-post-command-hook' (which see).") @@ -2061,7 +2057,6 @@ resultant list will be returned." (setq whitespace-point--used (let ((ol (make-overlay (point) (point) nil nil t))) (delete-overlay ol) ol)) - (setq-local whitespace-font-lock-refontify 0) (setq-local whitespace-bob-marker (point-min-marker)) (setq-local whitespace-eob-marker (point-max-marker)) (setq-local whitespace-buffer-changed nil) |