diff options
| author | Kenichi Handa | 2003-09-28 23:30:30 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2003-09-28 23:30:30 +0000 |
| commit | a9f600910a44df3e6a74c6122887e60700ce8b80 (patch) | |
| tree | c8c96358a1128c583730a5e918fca5c1650063fa | |
| parent | f15078e2b08aac1ca0973a1d9b794cf131c3b368 (diff) | |
| download | emacs-a9f600910a44df3e6a74c6122887e60700ce8b80.tar.gz emacs-a9f600910a44df3e6a74c6122887e60700ce8b80.zip | |
(encoded-string-description): Prepend "0x" to each encoded byte.
| -rw-r--r-- | lisp/international/mule-cmds.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/international/mule-cmds.el b/lisp/international/mule-cmds.el index c9b2330e75f..3a589f378e1 100644 --- a/lisp/international/mule-cmds.el +++ b/lisp/international/mule-cmds.el | |||
| @@ -2403,7 +2403,7 @@ It can be retrieved with `(get-char-code-property CHAR PROPNAME)'." | |||
| 2403 | (if (and coding-system (eq (coding-system-type coding-system) 2)) | 2403 | (if (and coding-system (eq (coding-system-type coding-system) 2)) |
| 2404 | ;; Try to get a pretty description for ISO 2022 escape sequences. | 2404 | ;; Try to get a pretty description for ISO 2022 escape sequences. |
| 2405 | (function (lambda (x) (or (cdr (assq x iso-2022-control-alist)) | 2405 | (function (lambda (x) (or (cdr (assq x iso-2022-control-alist)) |
| 2406 | (format "%02X" x)))) | 2406 | (format "0x%02X" x)))) |
| 2407 | (function (lambda (x) (format "0x%02X" x)))) | 2407 | (function (lambda (x) (format "0x%02X" x)))) |
| 2408 | str " ")) | 2408 | str " ")) |
| 2409 | 2409 | ||