* regex.c (CHAR_CHARSET, CHARSET_LEADING_CODE_BASE, CHAR_HEAD_P)
(SINGLE_BYTE_CHAR_P, SAME_CHARSET_P, MAKE_CHAR, BYTE8_TO_CHAR): Remove unused macro definitions. (CHARSET_RANGE_TABLE_BITS, EXTEND_RANGE_TABLE) (SET_RANGE_TABLE_WORK_AREA_BIT, SET_RANGE_TABLE_WORK_AREA): Only define if emacs.
This commit is contained in:
parent
c3c4768d2b
commit
78779650d6
2 changed files with 24 additions and 16 deletions
|
@ -1,3 +1,12 @@
|
|||
2013-08-28 Andreas Schwab <schwab@suse.de>
|
||||
|
||||
* regex.c (CHAR_CHARSET, CHARSET_LEADING_CODE_BASE, CHAR_HEAD_P)
|
||||
(SINGLE_BYTE_CHAR_P, SAME_CHARSET_P, MAKE_CHAR, BYTE8_TO_CHAR):
|
||||
Remove unused macro definitions.
|
||||
(CHARSET_RANGE_TABLE_BITS, EXTEND_RANGE_TABLE)
|
||||
(SET_RANGE_TABLE_WORK_AREA_BIT, SET_RANGE_TABLE_WORK_AREA): Only
|
||||
define if emacs.
|
||||
|
||||
2013-08-28 Dmitry Antipov <dmantipov@yandex.ru>
|
||||
|
||||
Prefer enum glyph_row_area to int where appropriate.
|
||||
|
|
31
src/regex.c
31
src/regex.c
|
@ -257,15 +257,10 @@ xrealloc (void *block, size_t size)
|
|||
enum syntaxcode { Swhitespace = 0, Sword = 1, Ssymbol = 2 };
|
||||
|
||||
/* Dummy macros for non-Emacs environments. */
|
||||
# define CHAR_CHARSET(c) 0
|
||||
# define CHARSET_LEADING_CODE_BASE(c) 0
|
||||
# define MAX_MULTIBYTE_LENGTH 1
|
||||
# define RE_MULTIBYTE_P(x) 0
|
||||
# define RE_TARGET_MULTIBYTE_P(x) 0
|
||||
# define WORD_BOUNDARY_P(c1, c2) (0)
|
||||
# define CHAR_HEAD_P(p) (1)
|
||||
# define SINGLE_BYTE_CHAR_P(c) (1)
|
||||
# define SAME_CHARSET_P(c1, c2) (1)
|
||||
# define BYTES_BY_CHAR_HEAD(p) (1)
|
||||
# define PREV_CHAR_BOUNDARY(p, limit) ((p)--)
|
||||
# define STRING_CHAR(p) (*(p))
|
||||
|
@ -279,8 +274,6 @@ enum syntaxcode { Swhitespace = 0, Sword = 1, Ssymbol = 2 };
|
|||
(c = ((p) == (str2) ? *((end1) - 1) : *((p) - 1)))
|
||||
# define GET_CHAR_AFTER(c, p, len) \
|
||||
(c = *p, len = 1)
|
||||
# define MAKE_CHAR(charset, c1, c2) (c1)
|
||||
# define BYTE8_TO_CHAR(c) (c)
|
||||
# define CHAR_BYTE8_P(c) (0)
|
||||
# define CHAR_LEADING_CODE(c) (c)
|
||||
|
||||
|
@ -775,10 +768,12 @@ extract_number_and_incr (re_char **source)
|
|||
and the 2 bytes of flags at the start of the range table. */
|
||||
#define CHARSET_RANGE_TABLE(p) (&(p)[4 + CHARSET_BITMAP_SIZE (p)])
|
||||
|
||||
#ifdef emacs
|
||||
/* Extract the bit flags that start a range table. */
|
||||
#define CHARSET_RANGE_TABLE_BITS(p) \
|
||||
((p)[2 + CHARSET_BITMAP_SIZE (p)] \
|
||||
+ (p)[3 + CHARSET_BITMAP_SIZE (p)] * 0x100)
|
||||
#endif
|
||||
|
||||
/* Return the address of end of RANGE_TABLE. COUNT is number of
|
||||
ranges (which is a pair of (start, end)) in the RANGE_TABLE. `* 2'
|
||||
|
@ -1830,6 +1825,8 @@ struct range_table_work_area
|
|||
int bits; /* flag to record character classes */
|
||||
};
|
||||
|
||||
#ifdef emacs
|
||||
|
||||
/* Make sure that WORK_AREA can hold more N multibyte characters.
|
||||
This is used only in set_image_of_range and set_image_of_range_1.
|
||||
It expects WORK_AREA to be a pointer.
|
||||
|
@ -1848,15 +1845,6 @@ struct range_table_work_area
|
|||
#define SET_RANGE_TABLE_WORK_AREA_BIT(work_area, bit) \
|
||||
(work_area).bits |= (bit)
|
||||
|
||||
/* Bits used to implement the multibyte-part of the various character classes
|
||||
such as [:alnum:] in a charset's range table. */
|
||||
#define BIT_WORD 0x1
|
||||
#define BIT_LOWER 0x2
|
||||
#define BIT_PUNCT 0x4
|
||||
#define BIT_SPACE 0x8
|
||||
#define BIT_UPPER 0x10
|
||||
#define BIT_MULTIBYTE 0x20
|
||||
|
||||
/* Set a range (RANGE_START, RANGE_END) to WORK_AREA. */
|
||||
#define SET_RANGE_TABLE_WORK_AREA(work_area, range_start, range_end) \
|
||||
do { \
|
||||
|
@ -1865,6 +1853,8 @@ struct range_table_work_area
|
|||
(work_area).table[(work_area).used++] = (range_end); \
|
||||
} while (0)
|
||||
|
||||
#endif /* emacs */
|
||||
|
||||
/* Free allocated memory for WORK_AREA. */
|
||||
#define FREE_RANGE_TABLE_WORK_AREA(work_area) \
|
||||
do { \
|
||||
|
@ -1876,6 +1866,15 @@ struct range_table_work_area
|
|||
#define RANGE_TABLE_WORK_USED(work_area) ((work_area).used)
|
||||
#define RANGE_TABLE_WORK_BITS(work_area) ((work_area).bits)
|
||||
#define RANGE_TABLE_WORK_ELT(work_area, i) ((work_area).table[i])
|
||||
|
||||
/* Bits used to implement the multibyte-part of the various character classes
|
||||
such as [:alnum:] in a charset's range table. */
|
||||
#define BIT_WORD 0x1
|
||||
#define BIT_LOWER 0x2
|
||||
#define BIT_PUNCT 0x4
|
||||
#define BIT_SPACE 0x8
|
||||
#define BIT_UPPER 0x10
|
||||
#define BIT_MULTIBYTE 0x20
|
||||
|
||||
|
||||
/* Set the bit for character C in a list. */
|
||||
|
|
Loading…
Add table
Reference in a new issue