* lisp/descr-text.el (describe-char): Fix %d/%x typo.
Fixes: debbugs:14360
This commit is contained in:
committed by
Glenn Morris
parent
3bcc28ed64
commit
b01682fbbe
@@ -1,3 +1,7 @@
|
||||
2013-05-08 Ulrich Mueller <ulm@gentoo.org>
|
||||
|
||||
* descr-text.el (describe-char): Fix %d/%x typo. (Bug#14360)
|
||||
|
||||
2013-04-24 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* subr.el (read-number): Once more use `read' rather than
|
||||
|
||||
@@ -748,7 +748,7 @@ relevant to POS."
|
||||
(insert " by these characters:\n")
|
||||
(while (and (<= from to)
|
||||
(setq glyph (lgstring-glyph gstring from)))
|
||||
(insert (format " %c (#x%d)\n"
|
||||
(insert (format " %c (#x%x)\n"
|
||||
(lglyph-char glyph) (lglyph-char glyph)))
|
||||
(setq from (1+ from)))))
|
||||
(insert " by the rule:\n\t(")
|
||||
|
||||
Reference in New Issue
Block a user