mirror of https://codeberg.org/cage/tinmop/
- simplified sorting predicate to complete IRI.
This commit is contained in:
parent
9e88fe0e6f
commit
c9f76e0f19
|
@ -214,9 +214,7 @@ list af all possible candidtae for completion."
|
|||
(non-nulls-a (- length-a nulls-a))
|
||||
(non-nulls-b (- length-b nulls-b)))
|
||||
(cond
|
||||
((= length-a length-b)
|
||||
(> non-nulls-a non-nulls-b))
|
||||
((= non-nulls-a non-nulls-b)
|
||||
((= nulls-a nulls-b)
|
||||
(> length-a length-b))
|
||||
(t
|
||||
(> non-nulls-a non-nulls-b)))))))
|
||||
|
|
Loading…
Reference in New Issue