changeset 93933:7f73d8c73d92

(ewoc-collect): Return results in the correct order.
author Alexandre Julliard <julliard@winehq.org>
date Wed, 09 Apr 2008 18:50:34 +0000
parents 20eb97f6a066
children ede670e0ca60
files lisp/emacs-lisp/ewoc.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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.