aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/language/devan-util.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/language/devan-util.el b/lisp/language/devan-util.el
index c74d74b1653..a9badda617c 100644
--- a/lisp/language/devan-util.el
+++ b/lisp/language/devan-util.el
@@ -1166,8 +1166,8 @@ Ligatures and special rules are processed."
1166 "This function re-orders glyph list for decomposition." 1166 "This function re-orders glyph list for decomposition."
1167 (sort glyphlist 1167 (sort glyphlist
1168 '(lambda (x y) 1168 '(lambda (x y)
1169 (let ((xx (assoc x devanagari-decomposition-rules)) 1169 (let ((xx (nth 1 (assoc x devanagari-decomposition-rules)))
1170 (yy (assoc y devanagari-decomposition-rules))) 1170 (yy (nth 1 (assoc y devanagari-decomposition-rules))))
1171 (if (null xx) (setq xx 0)) 1171 (if (null xx) (setq xx 0))
1172 (if (null yy) (setq yy 0)) 1172 (if (null yy) (setq yy 0))
1173 (< xx yy))))) 1173 (< xx yy)))))