(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.