diff options
| author | Juanma Barranquero | 2008-08-04 13:35:02 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2008-08-04 13:35:02 +0000 |
| commit | d6ff002e6df7f25e7d1475be374e8947687df996 (patch) | |
| tree | da7b493f25da033acb8f29a6a8f85652784addb2 | |
| parent | 52a39a64566c102782470b78bb8f8e930853d9b8 (diff) | |
| download | emacs-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/ChangeLog | 11 | ||||
| -rw-r--r-- | lisp/international/mule-cmds.el | 2 |
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 @@ | |||
| 1 | 2008-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 | |||
| 1 | 2008-08-04 Michael Albinus <michael.albinus@gmx.de> | 6 | 2008-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 | ||
| 7 | 2008-08-04 Juanma Barranquero <lekktu@gmail.com> | 12 | 2008-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. |