mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-08 12:40:49 -08:00
(BCOPY_SHORT): Fix typo `unsigined'.
This commit is contained in:
parent
4dbcac312d
commit
ae53401aeb
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue