Add a new error code, REG_ILLSEQ, to indicate that a regular expression
contains an illegal multibyte character sequence.
This commit is contained in:
parent
57e7de678f
commit
df5304b63c
@ -92,6 +92,7 @@ typedef struct {
|
||||
#define REG_EMPTY 14
|
||||
#define REG_ASSERT 15
|
||||
#define REG_INVARG 16
|
||||
#define REG_ILLSEQ 17
|
||||
#define REG_ATOI 255 /* convert name to number (!) */
|
||||
#define REG_ITOA 0400 /* convert number to name (!) */
|
||||
|
||||
|
@ -81,6 +81,7 @@ static char *regatoi(const regex_t *preg, char *localbuf);
|
||||
= #define REG_EMPTY 14
|
||||
= #define REG_ASSERT 15
|
||||
= #define REG_INVARG 16
|
||||
= #define REG_ILLSEQ 17
|
||||
= #define REG_ATOI 255 // convert name to number (!)
|
||||
= #define REG_ITOA 0400 // convert number to name (!)
|
||||
*/
|
||||
@ -105,6 +106,7 @@ static struct rerr {
|
||||
{REG_EMPTY, "REG_EMPTY", "empty (sub)expression"},
|
||||
{REG_ASSERT, "REG_ASSERT", "\"can't happen\" -- you found a bug"},
|
||||
{REG_INVARG, "REG_INVARG", "invalid argument to regex routine"},
|
||||
{REG_ILLSEQ, "REG_ILLSEQ", "illegal byte sequence"},
|
||||
{0, "", "*** unknown regexp error code ***"}
|
||||
};
|
||||
|
||||
|
@ -36,7 +36,7 @@
|
||||
.\" @(#)regex.3 8.4 (Berkeley) 3/20/94
|
||||
.\" $FreeBSD$
|
||||
.\"
|
||||
.Dd July 6, 2004
|
||||
.Dd July 12, 2004
|
||||
.Dt REGEX 3
|
||||
.Os
|
||||
.Sh NAME
|
||||
@ -652,6 +652,8 @@ empty (sub)expression
|
||||
can't happen - you found a bug
|
||||
.It Dv REG_INVARG
|
||||
invalid argument, e.g.\& negative-length string
|
||||
.It Dv REG_ILLSEQ
|
||||
illegal byte sequence (bad multibyte character)
|
||||
.El
|
||||
.Sh HISTORY
|
||||
Originally written by
|
||||
|
Loading…
Reference in New Issue
Block a user