[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/src/charset.h
From: |
Kenichi Handa |
Subject: |
[Emacs-diffs] Changes to emacs/src/charset.h |
Date: |
Wed, 31 Jul 2002 03:08:15 -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)
- [Emacs-diffs] Changes to emacs/src/charset.h, Dave Love, 2002/07/08
- [Emacs-diffs] Changes to emacs/src/charset.h, Ken Raeburn, 2002/07/14
- [Emacs-diffs] Changes to emacs/src/charset.h, Dave Love, 2002/07/16
- [Emacs-diffs] Changes to emacs/src/charset.h, Ken Raeburn, 2002/07/16
- [Emacs-diffs] Changes to emacs/src/charset.h, Ken Raeburn, 2002/07/16
- [Emacs-diffs] Changes to emacs/src/charset.h, Ken Raeburn, 2002/07/16
- [Emacs-diffs] Changes to emacs/src/charset.h, Ken Raeburn, 2002/07/19
- [Emacs-diffs] Changes to emacs/src/charset.h, Kenichi Handa, 2002/07/22
- [Emacs-diffs] Changes to emacs/src/charset.h,
Kenichi Handa <=