summaryrefslogtreecommitdiff
path: root/src/charset.h
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1999-08-10 17:30:22 +0000
committerKarl Heuer <kwzh@gnu.org>1999-08-10 17:30:22 +0000
commitae53401aeb5844d05ff6cc71ff80934824e5b422 (patch)
treefbc81eb3d553931746e876ee8cb2f0810f7c3a8a /src/charset.h
parent4dbcac312d90bd12853b1732d548e7bb43e1d251 (diff)
downloademacs-ae53401aeb5844d05ff6cc71ff80934824e5b422.tar.gz
(BCOPY_SHORT): Fix typo `unsigined'.
Diffstat (limited to 'src/charset.h')
-rw-r--r--src/charset.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/charset.h b/src/charset.h
index 2cc0f0ce017..1b2ac59bec5 100644
--- a/src/charset.h
+++ b/src/charset.h
@@ -835,7 +835,7 @@ extern Lisp_Object Vauto_fill_chars;
#define BCOPY_SHORT(from, to, len) \
do { \
int i = len; \
- unsigined char *from_p = from, *to_p = to; \
+ unsigned char *from_p = from, *to_p = to; \
while (i--) *from_p++ = *to_p++; \
} while (0)