Mercurial > emacs
changeset 57666:64d82a5de8e3
(enum reg_errcode_t): New value REG_ERANGEX.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Sun, 24 Oct 2004 03:57:45 +0000 |
parents | b8ccc605c96d |
children | 74daa791cabe |
files | src/regex.h |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/regex.h Sun Oct 24 03:56:51 2004 +0000 +++ b/src/regex.h Sun Oct 24 03:57:45 2004 +0000 @@ -316,7 +316,8 @@ /* 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