[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/src/charset.h
From: |
Dave Love |
Subject: |
[Emacs-diffs] Changes to emacs/src/charset.h |
Date: |
Tue, 03 Sep 2002 13:28:19 -0400 |
Index: emacs/src/charset.h
diff -c emacs/src/charset.h:1.70 emacs/src/charset.h:1.71
*** emacs/src/charset.h:1.70 Tue Jul 16 15:48:00 2002
--- emacs/src/charset.h Fri Jul 19 10:26:53 2002
***************
*** 826,832 ****
#define BCOPY_SHORT(from, to, len) \
do { \
int i = len; \
! unsigned char *from_p = from, *to_p = to; \
while (i--) *to_p++ = *from_p++; \
} while (0)
--- 826,833 ----
#define BCOPY_SHORT(from, to, len) \
do { \
int i = len; \
! const unsigned char *from_p = from; \
! unsigned char *to_p = to; \
while (i--) *to_p++ = *from_p++; \
} while (0)