+2005-11-20 Juri Linkov <juri@jurta.org>
+
+ * simple.el (what-cursor-position):
+ * descr-text.el (describe-char): Use Lisp-readable syntax
+ for octal and hex. Reorder decimal, octal and hex values.
+ Remove excess whitespace in the output. Use `=' in `column='
+ like in `point=' and `Hscroll='.
+
+ * international/mule-cmds.el (encoded-string-description):
+ Use Lisp-readable syntax for hex.
+
2005-11-19 Chong Yidong <cyd@stupidchicken.com>
* longlines.el (longlines-before-revert-hook)
(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 "0x%02X" x))))
- (function (lambda (x) (format "0x%02X" x))))
+ (format "#x%02X" x))))
+ (function (lambda (x) (format "#x%02X" x))))
str " "))
(defun encode-coding-char (char coding-system)