Mercurial > emacs
changeset 105534:c980b10b79eb
* international/mule-cmds.el (ucs-names): Exclude new "Enclosed
Ideographic Supplement" range (U+1F200..U+1F2FF).
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Fri, 09 Oct 2009 13:03:17 +0000 |
parents | 13b20c90218f |
children | e33093eaa152 |
files | lisp/ChangeLog lisp/international/mule-cmds.el |
diffstat | 2 files changed, 10 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Fri Oct 09 06:50:14 2009 +0000 +++ b/lisp/ChangeLog Fri Oct 09 13:03:17 2009 +0000 @@ -1,15 +1,19 @@ +2009-10-09 Juanma Barranquero <lekktu@gmail.com> + + * international/mule-cmds.el (ucs-names): Exclude new "Enclosed + Ideographic Supplement" range (U+1F200..U+1F2FF). + 2009-10-09 Karl Fogel <kfogel@red-bean.com> * bookmark.el (bookmark-bmenu-rename): Don't call bookmark-bmenu-list, - since the list will have been rebuilt anyway. (Bug#4349) + since the list will have been rebuilt anyway. (Bug#4349) 2009-10-09 Karl Fogel <kfogel@red-bean.com> - * bookmark.el (bookmark-delete): Don't let batch arg prevent - saving. + * bookmark.el (bookmark-delete): Don't let batch arg prevent saving. (bookmark-bmenu-execute-deletions): Don't save here, as bookmark-delete will now do so if necessary. - Suggested by: Thierry Volpiatto <thierry.volpiatto {_AT_} gmail.com> + Suggested by Thierry Volpiatto <thierry.volpiatto {_AT_} gmail.com>. (Bug#4348) 2009-10-09 Glenn Morris <rgm@gnu.org>
--- a/lisp/international/mule-cmds.el Fri Oct 09 06:50:14 2009 +0000 +++ b/lisp/international/mule-cmds.el Fri Oct 09 13:03:17 2009 +0000 @@ -2893,7 +2893,8 @@ (and (>= c #x3400 ) (<= c #x4dbf )) ; CJK Ideograph Extension A (and (>= c #x4e00 ) (<= c #x9fff )) ; CJK Ideograph (and (>= c #xd800 ) (<= c #xfaff )) ; Private/Surrogate - (and (>= c #x20000) (<= c #x2ffff)) ; CJK Ideograph Extension B + (and (>= c #x1f200) (<= c #x1f2ff)) ; Enclosed Ideographic Supplement + (and (>= c #x20000) (<= c #x2ffff)) ; CJK Ideograph Extensions B, C ) (if (setq name (get-char-code-property c 'name)) (setq names (cons (cons name c) names)))