aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2008-08-04 13:35:02 +0000
committerJuanma Barranquero2008-08-04 13:35:02 +0000
commitd6ff002e6df7f25e7d1475be374e8947687df996 (patch)
treeda7b493f25da033acb8f29a6a8f85652784addb2
parent52a39a64566c102782470b78bb8f8e930853d9b8 (diff)
downloademacs-d6ff002e6df7f25e7d1475be374e8947687df996.tar.gz
emacs-d6ff002e6df7f25e7d1475be374e8947687df996.zip
* international/mule-cmds.el (read-char-by-name):
Check UCS names with `assoc-string' and case folding.
-rw-r--r--lisp/ChangeLog11
-rw-r--r--lisp/international/mule-cmds.el2
2 files changed, 9 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 26a6c2b0800..eb44fb00656 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,8 +1,13 @@
12008-08-04 Juanma Barranquero <lekktu@gmail.com>
2
3 * international/mule-cmds.el (read-char-by-name):
4 Check UCS names with `assoc-string' and case folding.
5
12008-08-04 Michael Albinus <michael.albinus@gmx.de> 62008-08-04 Michael Albinus <michael.albinus@gmx.de>
2 7
3 * net/dbus.el (dbus-call-method-asynchronously) 8 * net/dbus.el (dbus-call-method-asynchronously)
4 (dbus-method-return-internal, dbus-method-error-internal): Declare 9 (dbus-method-return-internal, dbus-method-error-internal):
5 them with `declare-function'. 10 Declare them with `declare-function'.
6 11
72008-08-04 Juanma Barranquero <lekktu@gmail.com> 122008-08-04 Juanma Barranquero <lekktu@gmail.com>
8 13
@@ -17,7 +22,7 @@
17 22
18 * ido.el (ido-mode): Add toggle notification. 23 * ido.el (ido-mode): Add toggle notification.
19 24
20 * cus-edit.el (custom-save-all): Avoid destrying symlink if 25 * cus-edit.el (custom-save-all): Avoid destroying symlink if
21 already visiting the custom file. 26 already visiting the custom file.
22 27
23 * pgg-gpg.el (pgg-gpg-process-region): Accept any remaining 28 * pgg-gpg.el (pgg-gpg-process-region): Accept any remaining
diff --git a/lisp/international/mule-cmds.el b/lisp/international/mule-cmds.el
index c5b05d629aa..be3f53d2484 100644
--- a/lisp/international/mule-cmds.el
+++ b/lisp/international/mule-cmds.el
@@ -2877,7 +2877,7 @@ for decimal. Returns a character as a number."
2877 ((string-match "^#" input) 2877 ((string-match "^#" input)
2878 (read input)) 2878 (read input))
2879 (t 2879 (t
2880 (cdr (assoc input (ucs-names))))))) 2880 (cdr (assoc-string input (ucs-names) t))))))
2881 2881
2882(defun ucs-insert (arg) 2882(defun ucs-insert (arg)
2883 "Insert a character of the given Unicode code point. 2883 "Insert a character of the given Unicode code point.