summaryrefslogtreecommitdiff
path: root/admin
diff options
context:
space:
mode:
authorKenichi Handa <handa@m17n.org>2008-12-02 01:12:14 +0000
committerKenichi Handa <handa@m17n.org>2008-12-02 01:12:14 +0000
commitf1478738d89fcac8a2d44f947ff50d91f79c532b (patch)
tree523cc8f0c7ea45479106e699dfbc33c015f9bbe2 /admin
parentd90442cedd10acb2196c3096b802769cf0564cc8 (diff)
downloademacs-f1478738d89fcac8a2d44f947ff50d91f79c532b.tar.gz
(unidata-prop-alist): Docstring for
`decomposition' property adjusted. (unidata-split-decomposition): Don't include surrounding "<" and ">" in a symbol name.
Diffstat (limited to 'admin')
-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:
"Unicode decomposition mapping.
Property value is a list of characters. The first element may be
one of these symbols representing compatibility formatting tag:
- <font>, <noBreak>, <initial>, <medial>, <final>, <isolated>, <circle>,
- <super>, <sub>, <vertical>, <wide>, <narrow>, <small>, <square>, <fraction>,
- <compat>"
+ font, noBreak, initial, medial, final, isolated, circle, super,
+ sub, vertical, wide, narrow, small, square, fraction, compat"
unidata-describe-decomposition)
(decimal-digit-value
6 unidata-gen-table-integer "uni-decimal.el"
@@ -1027,11 +1026,11 @@ Property value is a character."
(setq c (aref str i))
(if (= c 32)
(setq l (if (= (aref str idx) ?<)
- (cons (intern (substring str idx i)) l)
+ (cons (intern (substring str (1+ idx) (1- i))) l)
(cons (string-to-number (substring str idx i) 16) l))
idx (1+ i))))
(if (= (aref str idx) ?<)
- (setq l (cons (intern (substring str idx len)) l))
+ (setq l (cons (intern (substring str (1+ idx) (1- len))) l))
(setq l (cons (string-to-number (substring str idx len) 16) l)))
(nreverse l)))))