Mercurial > emacs
changeset 54643:244826afc178
(ucs-insert): Fix the error message.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Mon, 29 Mar 2004 12:05:16 +0000 |
parents | abb31042a0e6 |
children | 56c76523b181 |
files | lisp/international/ucs-tables.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/international/ucs-tables.el Mon Mar 29 12:01:21 2004 +0000 +++ b/lisp/international/ucs-tables.el Mon Mar 29 12:05:16 2004 +0000 @@ -1249,7 +1249,7 @@ (interactive "sUnicode (hex): ") (or (integerp arg) (setq arg (string-to-number arg 16))) - (let ((c (decode-char 'ucs arg ))) + (let ((c (decode-char 'ucs arg))) (if c (insert c) (if (or (< arg 0) (> arg #x10FFFF))