]> git.eshelyaron.com Git - emacs.git/commitdiff
; * lisp/replace.el (occur--set-arrow): Remove unused variable.
authorMattias Engdegård <mattiase@acm.org>
Sun, 1 Aug 2021 13:25:02 +0000 (15:25 +0200)
committerMattias Engdegård <mattiase@acm.org>
Sun, 1 Aug 2021 13:25:02 +0000 (15:25 +0200)
lisp/replace.el

index 462cc26e993c18318f8b174a2b6a702b16703f60..54d652b2ed82f6cad117d44e0dcee35dfafe9b5c 100644 (file)
@@ -1446,8 +1446,7 @@ To return to ordinary Occur mode, use \\[occur-cease-edit]."
 (defun occur--set-arrow ()
   "Set the overlay arrow at the first line of the occur match at point."
   (save-excursion
-    (let ((start (point))
-          (target (get-text-property (point) 'occur-target))
+    (let ((target (get-text-property (point) 'occur-target))
           ;; Find the start of the occur match, in case it's multi-line.
           (prev (previous-single-property-change (point) 'occur-target)))
       (when (and prev (eq (get-text-property prev 'occur-target) target))