aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2009-10-09 13:03:17 +0000
committerJuanma Barranquero2009-10-09 13:03:17 +0000
commitd364386c8ea119356e4a2098c7f7eca10e0715e7 (patch)
tree9fca89020b66f0fca7d3e64db4665c8f62f0362e
parent02d0f051aa7e7ffa3b503122a7b99e47598fbbb2 (diff)
downloademacs-d364386c8ea119356e4a2098c7f7eca10e0715e7.tar.gz
emacs-d364386c8ea119356e4a2098c7f7eca10e0715e7.zip
* international/mule-cmds.el (ucs-names): Exclude new "Enclosed
Ideographic Supplement" range (U+1F200..U+1F2FF).
-rw-r--r--lisp/ChangeLog12
-rw-r--r--lisp/international/mule-cmds.el3
2 files changed, 10 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index a6c77c6c03d..5856ae9203a 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,15 +1,19 @@
12009-10-09 Juanma Barranquero <lekktu@gmail.com>
2
3 * international/mule-cmds.el (ucs-names): Exclude new "Enclosed
4 Ideographic Supplement" range (U+1F200..U+1F2FF).
5
12009-10-09 Karl Fogel <kfogel@red-bean.com> 62009-10-09 Karl Fogel <kfogel@red-bean.com>
2 7
3 * bookmark.el (bookmark-bmenu-rename): Don't call bookmark-bmenu-list, 8 * bookmark.el (bookmark-bmenu-rename): Don't call bookmark-bmenu-list,
4 since the list will have been rebuilt anyway. (Bug#4349) 9 since the list will have been rebuilt anyway. (Bug#4349)
5 10
62009-10-09 Karl Fogel <kfogel@red-bean.com> 112009-10-09 Karl Fogel <kfogel@red-bean.com>
7 12
8 * bookmark.el (bookmark-delete): Don't let batch arg prevent 13 * bookmark.el (bookmark-delete): Don't let batch arg prevent saving.
9 saving.
10 (bookmark-bmenu-execute-deletions): Don't save here, as 14 (bookmark-bmenu-execute-deletions): Don't save here, as
11 bookmark-delete will now do so if necessary. 15 bookmark-delete will now do so if necessary.
12 Suggested by: Thierry Volpiatto <thierry.volpiatto {_AT_} gmail.com> 16 Suggested by Thierry Volpiatto <thierry.volpiatto {_AT_} gmail.com>.
13 (Bug#4348) 17 (Bug#4348)
14 18
152009-10-09 Glenn Morris <rgm@gnu.org> 192009-10-09 Glenn Morris <rgm@gnu.org>
diff --git a/lisp/international/mule-cmds.el b/lisp/international/mule-cmds.el
index b9ae96f4ff0..5ae8290687e 100644
--- a/lisp/international/mule-cmds.el
+++ b/lisp/international/mule-cmds.el
@@ -2893,7 +2893,8 @@ 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 #x20000) (<= c #x2ffff)) ; CJK Ideograph Extension B 2896 (and (>= c #x1f200) (<= c #x1f2ff)) ; Enclosed Ideographic Supplement
2897 (and (>= c #x20000) (<= c #x2ffff)) ; CJK Ideograph Extensions B, C
2897 ) 2898 )
2898 (if (setq name (get-char-code-property c 'name)) 2899 (if (setq name (get-char-code-property c 'name))
2899 (setq names (cons (cons name c) names))) 2900 (setq names (cons (cons name c) names)))