]> git.eshelyaron.com Git - emacs.git/commitdiff
(encoded-string-description): Prepend "0x" to each encoded byte.
authorKenichi Handa <handa@m17n.org>
Sun, 28 Sep 2003 23:30:30 +0000 (23:30 +0000)
committerKenichi Handa <handa@m17n.org>
Sun, 28 Sep 2003 23:30:30 +0000 (23:30 +0000)
lisp/international/mule-cmds.el

index c9b2330e75f4b79ca8be38dfa6124bbe7e0e6599..3a589f378e108c154def075b1fc5263a9e6c0976 100644 (file)
@@ -2403,7 +2403,7 @@ 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 "%02X" x))))
+                                (format "0x%02X" x))))
      (function (lambda (x) (format "0x%02X" x))))
    str " "))