indian.el: fix sorting predicate
* lisp/leim/quail/indian.el (quail-tamil-itrans-compute-syllable-table): Add missing comparison. Patch from Visuwesh; bug found by an experimental tool.
This commit is contained in:
parent
4ac83ee105
commit
9e413584ad
1 changed files with 2 additions and 2 deletions
|
@ -154,8 +154,8 @@ strings that describe how to insert CONSONANT."
|
|||
(setq consonants
|
||||
(sort consonants
|
||||
(lambda (x y)
|
||||
(or (seq-position (car x) quail-tamil-itrans--consonant-order) 1000)
|
||||
(or (seq-position (car y) quail-tamil-itrans--consonant-order) 1000))))
|
||||
(< (or (seq-position (car x) quail-tamil-itrans--consonant-order) 1000)
|
||||
(or (seq-position (car y) quail-tamil-itrans--consonant-order) 1000)))))
|
||||
(let ((virama #x0BCD)
|
||||
clm)
|
||||
(with-temp-buffer
|
||||
|
|
Loading…
Add table
Reference in a new issue