From: Kenichi Handa Date: Mon, 3 Apr 2000 11:11:58 +0000 (+0000) Subject: (encoded-string-description): Use uppercase letters for hexadecimal X-Git-Tag: emacs-pretest-21.0.90~4351 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5de75f53b1c049f1656eb94bee65364199941275;p=emacs.git (encoded-string-description): Use uppercase letters for hexadecimal format. --- diff --git a/lisp/international/mule-cmds.el b/lisp/international/mule-cmds.el index c575a142364..2128c9c68b7 100644 --- a/lisp/international/mule-cmds.el +++ b/lisp/international/mule-cmds.el @@ -1820,7 +1820,7 @@ It can be retrieved with `(get-char-code-property CHAR PROPNAME)'." ;; 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)))) - (function (lambda (x) (format "0x%02x" x)))) + (function (lambda (x) (format "0x%02X" x)))) str " ")) (defun encode-coding-char (char coding-system)