branch: elpa/highlight-parentheses commit 829cc579de01622453080353e0dfbe6bc37613db Author: Nikolaj Schumacher <g...@nschum.de> Commit: Nikolaj Schumacher <g...@nschum.de>
Kill correct local variable. --- highlight-parentheses.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/highlight-parentheses.el b/highlight-parentheses.el index 8df50ab..112d0ec 100644 --- a/highlight-parentheses.el +++ b/highlight-parentheses.el @@ -120,7 +120,7 @@ This is used to prevent analyzing the same context over and over.") (add-hook 'post-command-hook 'hl-paren-highlight nil t)) (mapc 'delete-overlay hl-paren-overlays) (kill-local-variable 'hl-paren-overlays) - (kill-local-variable 'hl-paren-point) + (kill-local-variable 'hl-paren-last-point) (remove-hook 'post-command-hook 'hl-paren-highlight t))) ;;; overlays ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;