# HG changeset patch # User Dave Love # Date 969642991 0 # Node ID 6e48fd527039bcbf802b35c5a859548f0984890e # Parent 4bdcc0f0232f58893b90b0c98f2901b7782b8a75 (hl-line-overlay): Don't make it buffer-local. (hl-line-highlight): Specify buffer when moving overlay. diff -r 4bdcc0f0232f -r 6e48fd527039 lisp/hl-line.el --- a/lisp/hl-line.el Fri Sep 22 16:11:48 2000 +0000 +++ b/lisp/hl-line.el Fri Sep 22 17:16:31 2000 +0000 @@ -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."