bug-guile
[
Top
][
All Lists
]
Advanced
[
Date Prev
][
Date Next
][
Thread Prev
][
Thread Next
][
Date Index
][
Thread Index
]
bug#48480: [a-Z] is not a valid regex range in 3.0.7
From
:
dsmich
Subject
:
bug#48480: [a-Z] is not a valid regex range in 3.0.7
Date
:
Mon, 17 May 2021 15:39:38 +0000
This *is* the error returned by the underlying C library. For example:
#include <stdio.h>
#include <sys/types.h>
#include <regex.h>
int main() {
char buf[128] = {0};
regex_t rx = {0};
int status = regcomp(&rx, "[a-Z]", REG_EXTENDED);
size_t ret = regerror(status, &rx, buf, sizeof buf);
printf("status: %d, ret: %d, buf: [%s]\n", status, ret, buf);
return 0;
}
gcc -o rx rx.c && ./rx
status: 11, ret: 18, buf: [Invalid range end]
--Dale
reply via email to
[
Prev in Thread
]
Current Thread
[Next in Thread]
bug#48480: [a-Z] is not a valid regex range in 3.0.7
,
Marius Bakke
,
2021/05/17
bug#48480: [a-Z] is not a valid regex range in 3.0.7
,
Taylan Kammer
,
2021/05/17
bug#48480: [a-Z] is not a valid regex range in 3.0.7
,
Marius Bakke
,
2021/05/17
bug#48480: [a-Z] is not a valid regex range in 3.0.7
,
dsmich
<=
Prev by Date:
bug#48480: [a-Z] is not a valid regex range in 3.0.7
Next by Date:
bug#48480: [a-Z] is not a valid regex range in 3.0.7
Previous by thread:
bug#48480: [a-Z] is not a valid regex range in 3.0.7
Next by thread:
bug#15536: Problem with listing of online Guile manuals on gnu.org
Index(es):
Date
Thread