branch: externals/dict-tree commit c55382287b408901ebb37809c10e9496b3cae16c Author: Toby Cubitt <toby-predict...@dr-qubit.org> Commit: tsc25 <toby-predict...@dr-qubit.org>
Small bug-fix in dictree--do-query --- dict-tree.el | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/dict-tree.el b/dict-tree.el index df5df55..6fcfbbb 100644 --- a/dict-tree.el +++ b/dict-tree.el @@ -2121,9 +2121,7 @@ Returns nil if the stack is empty." ;; for a normal dict, call corresponding trie function on dict's trie ;; Note: could use a dictree-stack here too - would it be more efficient? (funcall triefun - (dictree--trie dict) arg - (when rank-function (dictree--wrap-rankfun rank-function)) - maxnum reverse filter))) + (dictree--trie dict) arg rank-function maxnum reverse filter)))