diff options
author | Alexandre Julliard <julliard@winehq.org> | 2008-04-09 18:50:34 +0000 |
---|---|---|
committer | Alexandre Julliard <julliard@winehq.org> | 2008-04-09 18:50:34 +0000 |
commit | d533750604ffa4d4068ebcf17f14fe5aa9571ed9 (patch) | |
tree | ae34e4ca5ff8f35e71709c6d13c2fb00f416b55a /lisp/emacs-lisp | |
parent | c025fb0a25dc97d04f37b6f94ec85bcdaa6d4afa (diff) | |
download | emacs-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.el | 2 |
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. |