diff options
author | Karoly Lorentey <lorentey@elte.hu> | 2005-11-23 01:35:21 +0000 |
---|---|---|
committer | Karoly Lorentey <lorentey@elte.hu> | 2005-11-23 01:35:21 +0000 |
commit | 950bed4bb96d2a580818bdaab64a164c7c9a1c1e (patch) | |
tree | 131973e52125af75637cd0417215ba3c5b7d1de4 /lisp/international/mule-cmds.el | |
parent | 59e085e04d44b0331620b55a64eb94bf99cf81b1 (diff) | |
parent | 5fdd4cf709ffb9c92cb565a60117afbd6fc43aa5 (diff) | |
download | emacs-950bed4bb96d2a580818bdaab64a164c7c9a1c1e.tar.gz |
Merged from miles@gnu.org--gnu-2005 (patch 656-658)
Patches applied:
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-656
Update from CVS
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-657
Update from CVS
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-658
Update from CVS
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-444
Diffstat (limited to 'lisp/international/mule-cmds.el')
-rw-r--r-- | lisp/international/mule-cmds.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/international/mule-cmds.el b/lisp/international/mule-cmds.el index 0de1777f6cb..712728fcd2a 100644 --- a/lisp/international/mule-cmds.el +++ b/lisp/international/mule-cmds.el @@ -2659,8 +2659,8 @@ It can be retrieved with `(get-char-code-property CHAR PROPNAME)'." (if (and coding-system (eq (coding-system-type coding-system) 2)) ;; Try to get a pretty description for ISO 2022 escape sequences. (function (lambda (x) (or (cdr (assq x iso-2022-control-alist)) - (format "0x%02X" x)))) - (function (lambda (x) (format "0x%02X" x)))) + (format "#x%02X" x)))) + (function (lambda (x) (format "#x%02X" x)))) str " ")) (defun encode-coding-char (char coding-system) |