* lisp/descr-text.el (describe-char): Fix %d/%x typo.
Fixes: debbugs:14360
This commit is contained in:
parent
3bcc28ed64
commit
b01682fbbe
2 changed files with 5 additions and 1 deletions
|
@ -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(")
|
||||
|
|
Loading…
Add table
Reference in a new issue