aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorKenichi Handa <[email protected]>2000-04-03 11:11:58 +0000
committerKenichi Handa <[email protected]>2000-04-03 11:11:58 +0000
commit5de75f53b1c049f1656eb94bee65364199941275 (patch)
tree22b65fb8374efd014ea2df5e51cc051f6843a997 /lisp
parent3a100fd68d3b2e33db1540fa81bdefba875b3818 (diff)
(encoded-string-description): Use uppercase letters for hexadecimal
format.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/international/mule-cmds.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/international/mule-cmds.el b/lisp/international/mule-cmds.el
index c575a14236..2128c9c68b 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)