From: Alexandre Julliard Date: Wed, 9 Apr 2008 18:50:34 +0000 (+0000) Subject: (ewoc-collect): Return results in the correct order. X-Git-Tag: emacs-pretest-23.0.90~6381 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d533750604ffa4d4068ebcf17f14fe5aa9571ed9;p=emacs.git (ewoc-collect): Return results in the correct order. --- diff --git a/lisp/emacs-lisp/ewoc.el b/lisp/emacs-lisp/ewoc.el index b21ec5e9c85..503580b80f3 100644 --- a/lisp/emacs-lisp/ewoc.el +++ b/lisp/emacs-lisp/ewoc.el @@ -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.