branch: externals/consult-hoogle commit 5b16f2f6c8c9c81a2539ba8371db1f76e6e4cc68 Author: Rahguzar <rahgu...@mailbox.org> Commit: Rahguzar <rahgu...@mailbox.org>
Missing nreverse from the fix #6 And new ELPA release --- consult-hoogle.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/consult-hoogle.el b/consult-hoogle.el index 03c83245db..2b01f9d3de 100644 --- a/consult-hoogle.el +++ b/consult-hoogle.el @@ -6,7 +6,7 @@ ;; Maintainer: rahguzar <rahgu...@mailbox.org> ;; Created: April 10, 2022 ;; License: GPL-3.0-or-later -;; Version: 0.4.0 +;; Version: 0.4.1 ;; Keywords: docs languages ;; Homepage: https://codeberg.org/rahguzar/consult-hoogle ;; Package-Requires: ((emacs "28.1") (consult "2.0")) @@ -105,7 +105,7 @@ we use the same buffer throughout." (let (candidates) (dolist (line lines) (push (consult-hoogle--format-result line) candidates)) - (delq nil candidates))) + (nreverse (delq nil candidates)))) ;;;; Constructing the details buffer for the selected result (defun consult-hoogle--show-details (action cand)