From: Richard M. Stallman Date: Mon, 28 Jul 1997 18:20:01 +0000 (+0000) Subject: (non_ascii_char_to_string): Fix typos. X-Git-Tag: emacs-20.1~921 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d16a4fc65bfdb0425262166e4a0928a3f8b6349e;p=emacs.git (non_ascii_char_to_string): Fix typos. --- diff --git a/src/charset.c b/src/charset.c index 2e30fcc67a6..7e605dada1b 100644 --- a/src/charset.c +++ b/src/charset.c @@ -120,7 +120,7 @@ non_ascii_char_to_string (c, workbuf, str) } else { - error ("Invalid characer: %d", c); + error ("Invalid character: %d", c); } } @@ -129,7 +129,7 @@ non_ascii_char_to_string (c, workbuf, str) || ! CHARSET_DEFINED_P (charset) || c1 >= 0 && c1 < 32 || c2 >= 0 && c2 < 32) - error ("Invalid characer: %d", c); + error ("Invalid character: %d", c); *str = workbuf; *workbuf++ = CHARSET_LEADING_CODE_BASE (charset);