]> git.eshelyaron.com Git - emacs.git/commitdiff
Protect flex's display-sort-function against 0-length candidates
authorJoão Távora <joaotavora@gmail.com>
Fri, 8 Nov 2019 23:40:18 +0000 (23:40 +0000)
committerJoão Távora <joaotavora@gmail.com>
Sat, 9 Nov 2019 14:55:42 +0000 (14:55 +0000)
* lisp/minibuffer.el (completion--flex-adjust-metadata): Assume a
candidate missing a score has a score of 0.

lisp/minibuffer.el

index cc113b926f3a889b895aea18b1370ecf75308254..5b993e792f0b823856051e5884b35f15f6bc2b06 100644 (file)
@@ -3496,8 +3496,9 @@ that is non-nil."
                   res
                   (lambda (c1 c2)
                     (or (equal c1 minibuffer-default)
-                        (> (get-text-property 0 'completion-score c1)
-                           (get-text-property 0 'completion-score c2)))))))))
+                        (let ((s1 (get-text-property 0 'completion-score c1))
+                              (s2 (get-text-property 0 'completion-score c2)))
+                          (> (or s1 0) (or s2 0))))))))))
     `(metadata
       (display-sort-function
        . ,(compose-flex-sort-fn