aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1997-07-28 18:20:01 +0000
committerRichard M. Stallman1997-07-28 18:20:01 +0000
commitd16a4fc65bfdb0425262166e4a0928a3f8b6349e (patch)
tree8690efa29c4bb3a0bc7c65a52b263b1aa3f3b58e /src
parent205c438b6ea279ca8b97cbcbb188a5cb5f01874f (diff)
downloademacs-d16a4fc65bfdb0425262166e4a0928a3f8b6349e.tar.gz
emacs-d16a4fc65bfdb0425262166e4a0928a3f8b6349e.zip
(non_ascii_char_to_string): Fix typos.
Diffstat (limited to 'src')
-rw-r--r--src/charset.c4
1 files changed, 2 insertions, 2 deletions
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)
120 } 120 }
121 else 121 else
122 { 122 {
123 error ("Invalid characer: %d", c); 123 error ("Invalid character: %d", c);
124 } 124 }
125 } 125 }
126 126
@@ -129,7 +129,7 @@ non_ascii_char_to_string (c, workbuf, str)
129 || ! CHARSET_DEFINED_P (charset) 129 || ! CHARSET_DEFINED_P (charset)
130 || c1 >= 0 && c1 < 32 130 || c1 >= 0 && c1 < 32
131 || c2 >= 0 && c2 < 32) 131 || c2 >= 0 && c2 < 32)
132 error ("Invalid characer: %d", c); 132 error ("Invalid character: %d", c);
133 133
134 *str = workbuf; 134 *str = workbuf;
135 *workbuf++ = CHARSET_LEADING_CODE_BASE (charset); 135 *workbuf++ = CHARSET_LEADING_CODE_BASE (charset);