Mercurial > emacs
comparison src/charset.h @ 25234:17336b4fc693
(BCOPY_SHORT): Fix typo `unsigined'.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Tue, 10 Aug 1999 17:30:22 +0000 |
parents | 15a2436cb80f |
children | 4d5f87073d63 |
comparison
equal
deleted
inserted
replaced
25233:f0d69d0f8222 | 25234:17336b4fc693 |
---|---|
833 faster than calling bcopy which has some overhead. */ | 833 faster than calling bcopy which has some overhead. */ |
834 | 834 |
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 |
842 /* Length of C in bytes. */ | 842 /* Length of C in bytes. */ |
843 | 843 |