# HG changeset patch # User Kenichi Handa # Date 1064791830 0 # Node ID 07aa89c19f9f04e75306078a5eba18c06b5fc722 # Parent 8d4e6d1d7201063305014add51c726d230e03961 (encoded-string-description): Prepend "0x" to each encoded byte. diff -r 8d4e6d1d7201 -r 07aa89c19f9f lisp/international/mule-cmds.el --- a/lisp/international/mule-cmds.el Sun Sep 28 23:30:09 2003 +0000 +++ b/lisp/international/mule-cmds.el Sun Sep 28 23:30:30 2003 +0000 @@ -2403,7 +2403,7 @@ (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 "%02X" x)))) + (format "0x%02X" x)))) (function (lambda (x) (format "0x%02X" x)))) str " "))