# HG changeset patch # User Alexandre Julliard # Date 1207767034 0 # Node ID 7f73d8c73d92ada53c240e1413064dcfe75d6655 # Parent 20eb97f6a066219c537c8cb01b7b937275d2821a (ewoc-collect): Return results in the correct order. diff -r 20eb97f6a066 -r 7f73d8c73d92 lisp/emacs-lisp/ewoc.el --- a/lisp/emacs-lisp/ewoc.el Wed Apr 09 18:02:08 2008 +0000 +++ b/lisp/emacs-lisp/ewoc.el Wed Apr 09 18:50:34 2008 +0000 @@ -547,7 +547,7 @@ (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.