From: Dmitry Gutov Date: Thu, 5 May 2016 13:01:52 +0000 (+0300) Subject: `nreverse' the marker pairs list X-Git-Tag: emacs-25.0.94~28 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3347a73;p=emacs.git `nreverse' the marker pairs list * lisp/progmodes/xref.el (xref--buf-pairs-iterator): `nreverse' the marker pairs list for each buffer before returning. --- diff --git a/lisp/progmodes/xref.el b/lisp/progmodes/xref.el index 1c28390258c..f651dc9cd18 100644 --- a/lisp/progmodes/xref.el +++ b/lisp/progmodes/xref.el @@ -570,7 +570,7 @@ references displayed in the current *xref* buffer." (t (setq chunk-done t next-pair pair)))))))) - (cons file-buf pairs))) + (cons file-buf (nreverse pairs)))) (:cleanup (dolist (pair all-pairs) (move-marker (car pair) nil)