diff options
| author | Kenichi Handa | 2004-10-24 03:58:24 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2004-10-24 03:58:24 +0000 |
| commit | be13f5e59d834c816580c357466d59a8d57b5b54 (patch) | |
| tree | b142f2e0d40719823e8e425a6443abb37c7eeee9 /src | |
| parent | b3e4c897957b01ff96f057127851c6b6cdf29c4a (diff) | |
| download | emacs-be13f5e59d834c816580c357466d59a8d57b5b54.tar.gz emacs-be13f5e59d834c816580c357466d59a8d57b5b54.zip | |
(enum reg_errcode_t): New value REG_ERANGEX.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 7 | ||||
| -rw-r--r-- | src/regex.h | 3 |
2 files changed, 9 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 433f51897b8..8544a1781af 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,10 @@ | |||
| 1 | 2004-10-24 Kenichi Handa <handa@m17n.org> | ||
| 2 | |||
| 3 | * regex.h (enum reg_errcode_t): New value REG_ERANGEX. | ||
| 4 | |||
| 5 | * regex.c (re_error_msgid): Add an entry for REG_ERANGEX. | ||
| 6 | (regex_compile): Return REG_ERANGEX if appropriate. | ||
| 7 | |||
| 1 | 2004-10-22 Kenichi Handa <handa@m17n.org> | 8 | 2004-10-22 Kenichi Handa <handa@m17n.org> |
| 2 | 9 | ||
| 3 | * editfns.c (Ftranslate_region_internal): New function. | 10 | * editfns.c (Ftranslate_region_internal): New function. |
diff --git a/src/regex.h b/src/regex.h index f969c9c5e74..2cdb02993b1 100644 --- a/src/regex.h +++ b/src/regex.h | |||
| @@ -316,7 +316,8 @@ typedef enum | |||
| 316 | /* Error codes we've added. */ | 316 | /* Error codes we've added. */ |
| 317 | REG_EEND, /* Premature end. */ | 317 | REG_EEND, /* Premature end. */ |
| 318 | REG_ESIZE, /* Compiled pattern bigger than 2^16 bytes. */ | 318 | REG_ESIZE, /* Compiled pattern bigger than 2^16 bytes. */ |
| 319 | REG_ERPAREN /* Unmatched ) or \); not returned from regcomp. */ | 319 | REG_ERPAREN, /* Unmatched ) or \); not returned from regcomp. */ |
| 320 | REG_ERANGEX /* Range striding over charsets. */ | ||
| 320 | } reg_errcode_t; | 321 | } reg_errcode_t; |
| 321 | 322 | ||
| 322 | /* This data structure represents a compiled pattern. Before calling | 323 | /* This data structure represents a compiled pattern. Before calling |