Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
ebcc4e2e
Commit
ebcc4e2e
authored
Dec 15, 1998
by
Kenichi Handa
Browse files
(devanagari-reorder-glyphs-for-decomposition): Fix the way to
handle devanagari-decomposition-rules.
parent
edf496dd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lisp/language/devan-util.el
lisp/language/devan-util.el
+2
-2
No files found.
lisp/language/devan-util.el
View file @
ebcc4e2e
...
...
@@ -1166,8 +1166,8 @@ Ligatures and special rules are processed."
"This function re-orders glyph list for decomposition."
(
sort
glyphlist
'
(
lambda
(
x
y
)
(
let
((
xx
(
assoc
x
devanagari-decomposition-rules
))
(
yy
(
assoc
y
devanagari-decomposition-rules
)))
(
let
((
xx
(
nth
1
(
assoc
x
devanagari-decomposition-rules
))
)
(
yy
(
nth
1
(
assoc
y
devanagari-decomposition-rules
)))
)
(
if
(
null
xx
)
(
setq
xx
0
))
(
if
(
null
yy
)
(
setq
yy
0
))
(
<
xx
yy
)))))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment