aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
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