aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/descr-text.el2
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 2e0645e5156..84ce7d1e71a 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12013-05-08 Ulrich Mueller <ulm@gentoo.org>
2
3 * descr-text.el (describe-char): Fix %d/%x typo. (Bug#14360)
4
12013-04-24 Glenn Morris <rgm@gnu.org> 52013-04-24 Glenn Morris <rgm@gnu.org>
2 6
3 * subr.el (read-number): Once more use `read' rather than 7 * subr.el (read-number): Once more use `read' rather than
diff --git a/lisp/descr-text.el b/lisp/descr-text.el
index 005f5d8cb72..f4902c5e01d 100644
--- a/lisp/descr-text.el
+++ b/lisp/descr-text.el
@@ -748,7 +748,7 @@ relevant to POS."
748 (insert " by these characters:\n") 748 (insert " by these characters:\n")
749 (while (and (<= from to) 749 (while (and (<= from to)
750 (setq glyph (lgstring-glyph gstring from))) 750 (setq glyph (lgstring-glyph gstring from)))
751 (insert (format " %c (#x%d)\n" 751 (insert (format " %c (#x%x)\n"
752 (lglyph-char glyph) (lglyph-char glyph))) 752 (lglyph-char glyph) (lglyph-char glyph)))
753 (setq from (1+ from))))) 753 (setq from (1+ from)))))
754 (insert " by the rule:\n\t(") 754 (insert " by the rule:\n\t(")