From: Karl Heuer Date: Tue, 10 Aug 1999 17:30:22 +0000 (+0000) Subject: (BCOPY_SHORT): Fix typo `unsigined'. X-Git-Tag: emacs-pretest-21.0.90~7207 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ae53401aeb5844d05ff6cc71ff80934824e5b422;p=emacs.git (BCOPY_SHORT): Fix typo `unsigined'. --- 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)