aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--admin/unidata/unidata-gen.el9
1 files changed, 4 insertions, 5 deletions
diff --git a/admin/unidata/unidata-gen.el b/admin/unidata/unidata-gen.el
index 83c628e47ed..f0ee13f3986 100644
--- a/admin/unidata/unidata-gen.el
+++ b/admin/unidata/unidata-gen.el
@@ -166,9 +166,8 @@ Property value is one of the following symbols:
166 "Unicode decomposition mapping. 166 "Unicode decomposition mapping.
167Property value is a list of characters. The first element may be 167Property value is a list of characters. The first element may be
168one of these symbols representing compatibility formatting tag: 168one of these symbols representing compatibility formatting tag:
169 <font>, <noBreak>, <initial>, <medial>, <final>, <isolated>, <circle>, 169 font, noBreak, initial, medial, final, isolated, circle, super,
170 <super>, <sub>, <vertical>, <wide>, <narrow>, <small>, <square>, <fraction>, 170 sub, vertical, wide, narrow, small, square, fraction, compat"
171 <compat>"
172 unidata-describe-decomposition) 171 unidata-describe-decomposition)
173 (decimal-digit-value 172 (decimal-digit-value
174 6 unidata-gen-table-integer "uni-decimal.el" 173 6 unidata-gen-table-integer "uni-decimal.el"
@@ -1027,11 +1026,11 @@ Property value is a character."
1027 (setq c (aref str i)) 1026 (setq c (aref str i))
1028 (if (= c 32) 1027 (if (= c 32)
1029 (setq l (if (= (aref str idx) ?<) 1028 (setq l (if (= (aref str idx) ?<)
1030 (cons (intern (substring str idx i)) l) 1029 (cons (intern (substring str (1+ idx) (1- i))) l)
1031 (cons (string-to-number (substring str idx i) 16) l)) 1030 (cons (string-to-number (substring str idx i) 16) l))
1032 idx (1+ i)))) 1031 idx (1+ i))))
1033 (if (= (aref str idx) ?<) 1032 (if (= (aref str idx) ?<)
1034 (setq l (cons (intern (substring str idx len)) l)) 1033 (setq l (cons (intern (substring str (1+ idx) (1- len))) l))
1035 (setq l (cons (string-to-number (substring str idx len) 16) l))) 1034 (setq l (cons (string-to-number (substring str idx len) 16) l)))
1036 (nreverse l))))) 1035 (nreverse l)))))
1037 1036