diff options
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/international/mule-cmds.el | 1 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 644d9856ba1..65f06b645a0 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2009-10-13 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * international/mule-cmds.el (ucs-names): Remove exclusion of | ||
| 4 | "Enclosed Ideographic Supplement" range (U+1F200..U+1F2FF). | ||
| 5 | |||
| 1 | 2009-10-13 Kenichi Handa <handa@m17n.org> | 6 | 2009-10-13 Kenichi Handa <handa@m17n.org> |
| 2 | 7 | ||
| 3 | * international/uni-name.el: Regenerated. | 8 | * international/uni-name.el: Regenerated. |
diff --git a/lisp/international/mule-cmds.el b/lisp/international/mule-cmds.el index 5ae8290687e..7c1d82ad3c6 100644 --- a/lisp/international/mule-cmds.el +++ b/lisp/international/mule-cmds.el | |||
| @@ -2893,7 +2893,6 @@ on encoding." | |||
| 2893 | (and (>= c #x3400 ) (<= c #x4dbf )) ; CJK Ideograph Extension A | 2893 | (and (>= c #x3400 ) (<= c #x4dbf )) ; CJK Ideograph Extension A |
| 2894 | (and (>= c #x4e00 ) (<= c #x9fff )) ; CJK Ideograph | 2894 | (and (>= c #x4e00 ) (<= c #x9fff )) ; CJK Ideograph |
| 2895 | (and (>= c #xd800 ) (<= c #xfaff )) ; Private/Surrogate | 2895 | (and (>= c #xd800 ) (<= c #xfaff )) ; Private/Surrogate |
| 2896 | (and (>= c #x1f200) (<= c #x1f2ff)) ; Enclosed Ideographic Supplement | ||
| 2897 | (and (>= c #x20000) (<= c #x2ffff)) ; CJK Ideograph Extensions B, C | 2896 | (and (>= c #x20000) (<= c #x2ffff)) ; CJK Ideograph Extensions B, C |
| 2898 | ) | 2897 | ) |
| 2899 | (if (setq name (get-char-code-property c 'name)) | 2898 | (if (setq name (get-char-code-property c 'name)) |