diff options
| author | Alexandre Julliard | 2008-04-09 18:50:34 +0000 |
|---|---|---|
| committer | Alexandre Julliard | 2008-04-09 18:50:34 +0000 |
| commit | d533750604ffa4d4068ebcf17f14fe5aa9571ed9 (patch) | |
| tree | ae34e4ca5ff8f35e71709c6d13c2fb00f416b55a | |
| parent | c025fb0a25dc97d04f37b6f94ec85bcdaa6d4afa (diff) | |
| download | emacs-d533750604ffa4d4068ebcf17f14fe5aa9571ed9.tar.gz emacs-d533750604ffa4d4068ebcf17f14fe5aa9571ed9.zip | |
(ewoc-collect): Return results in the correct order.
| -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." | |||
| 547 | (if (apply predicate (ewoc--node-data node) args) | 547 | (if (apply predicate (ewoc--node-data node) args) |
| 548 | (push (ewoc--node-data node) result)) | 548 | (push (ewoc--node-data node) result)) |
| 549 | (setq node (ewoc--node-prev dll node))) | 549 | (setq node (ewoc--node-prev dll node))) |
| 550 | (nreverse result))) | 550 | result)) |
| 551 | 551 | ||
| 552 | (defun ewoc-buffer (ewoc) | 552 | (defun ewoc-buffer (ewoc) |
| 553 | "Return the buffer that is associated with EWOC. | 553 | "Return the buffer that is associated with EWOC. |