[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/src/charset.h
From: |
Ken Raeburn |
Subject: |
[Emacs-diffs] Changes to emacs/src/charset.h |
Date: |
Tue, 16 Jul 2002 11:49:03 -0400 |
Index: emacs/src/charset.h
diff -c emacs/src/charset.h:1.67 emacs/src/charset.h:1.68
*** emacs/src/charset.h:1.67 Sun Jul 14 20:00:35 2002
--- emacs/src/charset.h Tue Jul 16 11:49:03 2002
***************
*** 573,579 ****
CHARIDX++;
\
if (STRING_MULTIBYTE (STRING)) \
{
\
! unsigned char *ptr = &SREF (STRING, BYTEIDX); \
int space_left = XSTRING (STRING)->size_byte - BYTEIDX; \
int actual_len; \
\
--- 573,579 ----
CHARIDX++;
\
if (STRING_MULTIBYTE (STRING)) \
{
\
! unsigned char *ptr = SDATA (STRING) + BYTEIDX; \
int space_left = XSTRING (STRING)->size_byte - BYTEIDX; \
int actual_len; \
\
***************
*** 590,596 ****
#define FETCH_STRING_CHAR_ADVANCE_NO_CHECK(OUTPUT, STRING, CHARIDX, BYTEIDX)
\
if (1)
\
{ \
! unsigned char *fetch_string_char_ptr = &SREF (STRING, BYTEIDX); \
int fetch_string_char_space_left = XSTRING (STRING)->size_byte - BYTEIDX;
\
int actual_len; \
\
--- 590,596 ----
#define FETCH_STRING_CHAR_ADVANCE_NO_CHECK(OUTPUT, STRING, CHARIDX, BYTEIDX)
\
if (1)
\
{ \
! unsigned char *fetch_string_char_ptr = SDATA (STRING) + BYTEIDX; \
int fetch_string_char_space_left = XSTRING (STRING)->size_byte - BYTEIDX;
\
int actual_len; \
\
- [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 <=
- [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, 2002/07/31