aboutsummaryrefslogtreecommitdiffstats
path: root/src/regex.h
diff options
context:
space:
mode:
authorMiles Bader2004-10-27 05:42:04 +0000
committerMiles Bader2004-10-27 05:42:04 +0000
commite0da2cddda8d2244be17fe33fd3130af8c8041c8 (patch)
tree4f29220860cddf776e784932fde024d8ca03c802 /src/regex.h
parent69c48766bbee2af7643b8995213120216b26a73e (diff)
parente65837df545fcf0791b3c8db27186e605cf89538 (diff)
downloademacs-e0da2cddda8d2244be17fe33fd3130af8c8041c8.tar.gz
emacs-e0da2cddda8d2244be17fe33fd3130af8c8041c8.zip
Revision: miles@gnu.org--gnu-2004/emacs--unicode--0--patch-65
Merge from emacs--cvs-trunk--0 Patches applied: * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-634 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-639 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-640 Merge from gnus--rel--5.10 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-641 Update from CVS * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-59 - miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-60 Update from CVS
Diffstat (limited to 'src/regex.h')
-rw-r--r--src/regex.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/regex.h b/src/regex.h
index 26c589bde92..b1cfd5fdd11 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