X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/7013279cb37dde47bc0a8981f1e883aeea01c709..6a70ef0d8173b57817bcc8a013eb86c8583e74fc:/lisp/hl-line.el diff --git a/lisp/hl-line.el b/lisp/hl-line.el index a3d66135c4..22d4719fae 100644 --- a/lisp/hl-line.el +++ b/lisp/hl-line.el @@ -60,20 +60,19 @@ :group 'hl-line) (defvar hl-line-overlay nil) -(make-variable-buffer-local 'hl-line-overlay) -(put 'hl-line-overlay 'permanent-local t) (defun hl-line-highlight () "Active the Hl-Line overlay on the current line in the current window. \(Unless it's a minibuffer window.)" (when hl-line-mode ; Could be made buffer-local. (unless (window-minibuffer-p (selected-window)) ; silly in minibuffer - (unless hl-line-overlay ; new overlay for this buffer + (unless hl-line-overlay (setq hl-line-overlay (make-overlay 1 1)) ; to be moved (overlay-put hl-line-overlay 'face hl-line-face)) (overlay-put hl-line-overlay 'window (selected-window)) (move-overlay hl-line-overlay - (line-beginning-position) (1+ (line-end-position)))))) + (line-beginning-position) (1+ (line-end-position)) + (current-buffer))))) (defun hl-line-unhighlight () "Deactivate the Hl-Line overlay on the current line in the current window."