# HG changeset patch # User Juanma Barranquero # Date 1255093397 0 # Node ID c980b10b79eb0a569d3658ad93bfa2caad5d692e # Parent 13b20c90218ffcd5eb7ece2784fae269a3fd0edc * international/mule-cmds.el (ucs-names): Exclude new "Enclosed Ideographic Supplement" range (U+1F200..U+1F2FF). diff -r 13b20c90218f -r c980b10b79eb lisp/ChangeLog --- 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 + + * international/mule-cmds.el (ucs-names): Exclude new "Enclosed + Ideographic Supplement" range (U+1F200..U+1F2FF). + 2009-10-09 Karl Fogel * 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 - * 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 + Suggested by Thierry Volpiatto . (Bug#4348) 2009-10-09 Glenn Morris diff -r 13b20c90218f -r c980b10b79eb lisp/international/mule-cmds.el --- 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)))