# HG changeset patch # User Kenichi Handa # Date 887938847 0 # Node ID 3c2c8431c51db62c996c61b19c23fa7a55fd7374 # Parent 068eb408c911b7419fc28c787dcbb170021e7f9a (INC_POS): Use macro BASE_LEADING_CODE_P. (DEC_POS): Make the behaviour consistent with INC_POS. (BUF_INC_POS, BUF_DEC_POS): Likewise. diff -r 068eb408c911 -r 3c2c8431c51d src/charset.h --- a/src/charset.h Fri Feb 20 01:40:47 1998 +0000 +++ b/src/charset.h Fri Feb 20 01:40:47 1998 +0000 @@ -628,22 +628,28 @@ do { \ unsigned char *p = BYTE_POS_ADDR (pos); \ pos++; \ - if (*p++ >= 0x80) \ + if (BASE_LEADING_CODE_P (*p++)) \ while (!CHAR_HEAD_P (*p)) p++, pos++; \ } while (0) /* Decrease the buffer point POS of the current buffer to the previous character boundary. No range checking of POS. */ -#define DEC_POS(pos) \ - do { \ - unsigned char *p, *p_min; \ - int pos_saved = --pos; \ - if (pos < GPT_BYTE) \ - p = BEG_ADDR + pos - 1, p_min = BEG_ADDR; \ - else \ +#define DEC_POS(pos) \ + do { \ + unsigned char *p, *p_min; \ + \ + pos--; \ + if (pos < GPT_BYTE) \ + p = BEG_ADDR + pos - 1, p_min = BEG_ADDR; \ + else \ p = BEG_ADDR + GAP_SIZE + pos - 1, p_min = GAP_END_ADDR; \ - while (p > p_min && !CHAR_HEAD_P (*p)) p--, pos--; \ - if (*p < 0x80 && pos != pos_saved) pos = pos_saved; \ + if (p > p_min && !CHAR_HEAD_P (*p)) \ + { \ + int pos_saved = pos--; \ + p--; \ + while (p > p_min && !CHAR_HEAD_P (*p)) p--, pos--; \ + if (!BASE_LEADING_CODE_P (*p)) pos = pos_saved; \ + } \ } while (0) /* Increment both CHARPOS and BYTEPOS, each in the appropriate way. */ @@ -676,12 +682,12 @@ character boundary. This macro relies on the fact that *GPT_ADDR and *Z_ADDR are always accessible and the values are '\0'. No range checking of POS. */ -#define BUF_INC_POS(buf, pos) \ - do { \ +#define BUF_INC_POS(buf, pos) \ + do { \ unsigned char *p = BUF_BYTE_ADDRESS (buf, pos); \ - pos++; \ - if (*p++ >= 0x80) \ - while (!CHAR_HEAD_P (*p)) p++, pos++; \ + pos++; \ + if (BASE_LEADING_CODE_P (*p++)) \ + while (!CHAR_HEAD_P (*p)) p++, pos++; \ } while (0) /* Decrease the buffer point POS of the current buffer to the previous @@ -700,8 +706,13 @@ p = BUF_BEG_ADDR (buf) + BUF_GAP_SIZE (buf) + pos - 1; \ p_min = BUF_GAP_END_ADDR (buf); \ } \ - while (p > p_min && !CHAR_HEAD_P (*p)) p--, pos--; \ - if (*p < 0x80 && pos != pos_saved) pos = pos_saved; \ + if (p > p_min && !CHAR_HEAD_P (*p)) \ + { \ + int pos_saved = pos--; \ + p--; \ + while (p > p_min && !CHAR_HEAD_P (*p)) p--, pos--; \ + if (!BASE_LEADING_CODE_P (*p)) pos = pos_saved; \ + } \ } while (0) #endif /* emacs */ @@ -756,6 +767,8 @@ /* Maximum character code currently used. */ #define MAX_CHAR (MIN_CHAR_COMPOSITION + n_cmpchars) +extern void invalid_character P_ ((int)); + extern int unify_char P_ ((Lisp_Object, int, int, int, int)); extern int split_non_ascii_string P_ ((unsigned char *, int, int *, unsigned char *, unsigned char *));