]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix xref-clear-marker-stack refactoring mistake
authorMattias Engdegård <mattiase@acm.org>
Thu, 26 Jan 2023 11:36:20 +0000 (12:36 +0100)
committerMattias Engdegård <mattiase@acm.org>
Thu, 26 Jan 2023 11:36:20 +0000 (12:36 +0100)
* lisp/progmodes/xref.el (xref-clear-marker-stack):
Clear the history correctly.  Changing a lexical variable has no effect.

lisp/progmodes/xref.el

index 916d83d407b15c62d4e8fe5692d2ac85336ba1fb..4db0df6c3b8c6417c47f8ce7481d8aa48f40ce81 100644 (file)
@@ -568,7 +568,8 @@ This can be used from `xref-after-jump-hook', for instance.")
     (dolist (l (list (car history) (cdr history)))
       (dolist (m l)
         (set-marker m nil nil)))
-    (setq history (cons nil nil)))
+    (setcar history nil)
+    (setcdr history nil))
   nil)
 
 ;;;###autoload