diff options
| author | Kenichi Handa | 2008-12-02 01:12:14 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2008-12-02 01:12:14 +0000 |
| commit | f1478738d89fcac8a2d44f947ff50d91f79c532b (patch) | |
| tree | 523cc8f0c7ea45479106e699dfbc33c015f9bbe2 /admin | |
| parent | d90442cedd10acb2196c3096b802769cf0564cc8 (diff) | |
| download | emacs-f1478738d89fcac8a2d44f947ff50d91f79c532b.tar.gz emacs-f1478738d89fcac8a2d44f947ff50d91f79c532b.zip | |
(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.el | 9 |
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. |
| 167 | Property value is a list of characters. The first element may be | 167 | Property value is a list of characters. The first element may be |
| 168 | one of these symbols representing compatibility formatting tag: | 168 | one 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 | ||