(enum reg_errcode_t): New value REG_ERANGEX.
This commit is contained in:
parent
b3e4c89795
commit
be13f5e59d
2 changed files with 9 additions and 1 deletions
|
@ -1,3 +1,10 @@
|
|||
2004-10-24 Kenichi Handa <handa@m17n.org>
|
||||
|
||||
* regex.h (enum reg_errcode_t): New value REG_ERANGEX.
|
||||
|
||||
* regex.c (re_error_msgid): Add an entry for REG_ERANGEX.
|
||||
(regex_compile): Return REG_ERANGEX if appropriate.
|
||||
|
||||
2004-10-22 Kenichi Handa <handa@m17n.org>
|
||||
|
||||
* editfns.c (Ftranslate_region_internal): New function.
|
||||
|
|
|
@ -316,7 +316,8 @@ typedef enum
|
|||
/* Error codes we've added. */
|
||||
REG_EEND, /* Premature end. */
|
||||
REG_ESIZE, /* Compiled pattern bigger than 2^16 bytes. */
|
||||
REG_ERPAREN /* Unmatched ) or \); not returned from regcomp. */
|
||||
REG_ERPAREN, /* Unmatched ) or \); not returned from regcomp. */
|
||||
REG_ERANGEX /* Range striding over charsets. */
|
||||
} reg_errcode_t;
|
||||
|
||||
/* This data structure represents a compiled pattern. Before calling
|
||||
|
|
Loading…
Add table
Reference in a new issue