From 85416bdad7f0a391bd3a9bdd93a9905eba422a40 Mon Sep 17 00:00:00 2001 From: Juri Linkov Date: Sun, 20 Nov 2005 07:52:40 +0000 Subject: [PATCH] (invalid_character): Use Lisp-readable syntax for octal and hex. Reorder decimal, octal and hex values. --- src/charset.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/charset.c b/src/charset.c index b4f84a9e785..23b2cc75c1f 100644 --- a/src/charset.c +++ b/src/charset.c @@ -115,7 +115,7 @@ void invalid_character (c) int c; { - error ("Invalid character: 0%o, %d, 0x%x", c, c, c); + error ("Invalid character: %d, #o%o, #x%x", c, c, c); } /* Parse string STR of length LENGTH and fetch information of a -- 2.11.4.GIT