aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1999-08-10 17:30:22 +0000
committerKarl Heuer1999-08-10 17:30:22 +0000
commitae53401aeb5844d05ff6cc71ff80934824e5b422 (patch)
treefbc81eb3d553931746e876ee8cb2f0810f7c3a8a /src
parent4dbcac312d90bd12853b1732d548e7bb43e1d251 (diff)
downloademacs-ae53401aeb5844d05ff6cc71ff80934824e5b422.tar.gz
emacs-ae53401aeb5844d05ff6cc71ff80934824e5b422.zip
(BCOPY_SHORT): Fix typo `unsigined'.
Diffstat (limited to 'src')
-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;
835#define BCOPY_SHORT(from, to, len) \ 835#define BCOPY_SHORT(from, to, len) \
836 do { \ 836 do { \
837 int i = len; \ 837 int i = len; \
838 unsigined char *from_p = from, *to_p = to; \ 838 unsigned char *from_p = from, *to_p = to; \
839 while (i--) *from_p++ = *to_p++; \ 839 while (i--) *from_p++ = *to_p++; \
840 } while (0) 840 } while (0)
841 841