1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-26 10:49:33 +00:00

`nreverse' the marker pairs list

* lisp/progmodes/xref.el (xref--buf-pairs-iterator): `nreverse'
the marker pairs list for each buffer before returning.
This commit is contained in:
Dmitry Gutov 2016-05-05 16:01:52 +03:00
parent 1a4127dbd6
commit 3347a733e0

View File

@ -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)