summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorAlexandre Julliard <julliard@winehq.org>2008-04-09 18:50:34 +0000
committerAlexandre Julliard <julliard@winehq.org>2008-04-09 18:50:34 +0000
commitd533750604ffa4d4068ebcf17f14fe5aa9571ed9 (patch)
treeae34e4ca5ff8f35e71709c6d13c2fb00f416b55a /lisp/emacs-lisp
parentc025fb0a25dc97d04f37b6f94ec85bcdaa6d4afa (diff)
downloademacs-d533750604ffa4d4068ebcf17f14fe5aa9571ed9.tar.gz
emacs-d533750604ffa4d4068ebcf17f14fe5aa9571ed9.tar.bz2
emacs-d533750604ffa4d4068ebcf17f14fe5aa9571ed9.zip
(ewoc-collect): Return results in the correct order.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/ewoc.el2
1 files changed, 1 insertions, 1 deletions
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.