1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-22 18:35:09 +00:00

(ewoc-collect): Return results in the correct order.

This commit is contained in:
Alexandre Julliard 2008-04-09 18:50:34 +00:00
parent c025fb0a25
commit d533750604

View File

@ -547,7 +547,7 @@ remaining arguments will be passed to PREDICATE."
(if (apply predicate (ewoc--node-data node) args)
(push (ewoc--node-data node) result))
(setq node (ewoc--node-prev dll node)))
(nreverse result)))
result))
(defun ewoc-buffer (ewoc)
"Return the buffer that is associated with EWOC.