summaryrefslogtreecommitdiffstats
path: root/regex.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2012-04-10 03:11:09 -0700
committerKaz Kylheku <kaz@kylheku.com>2012-04-10 03:11:09 -0700
commitd228557c3c400ba7a81ba0b0fd867ec78bb35015 (patch)
tree0a5aaca7ead1d53d89a30fab76b2263838cd2f98 /regex.c
parentd26540493a85fe2f4e85da81504cc0264df0c11f (diff)
downloadtxr-d228557c3c400ba7a81ba0b0fd867ec78bb35015.tar.gz
txr-d228557c3c400ba7a81ba0b0fd867ec78bb35015.tar.bz2
txr-d228557c3c400ba7a81ba0b0fd867ec78bb35015.zip
* eval.c (eval_init): Expose regex-compile and regexp as intrinsics.
* lib.c (obj_init): Change spelling of nongreedy operator and put it into the user package so that it is available for use with regex-compile. * regex.c (match_regex, search_regex): Bugfix: optional start position argument argument not defaulting to zero. * txr.1: Documented regex-compile and regexp. * txr.vim: Highlighting regex-compile and regexp.
Diffstat (limited to 'regex.c')
-rw-r--r--regex.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/regex.c b/regex.c
index 2fc08c64..eddb3b0e 100644
--- a/regex.c
+++ b/regex.c
@@ -1644,6 +1644,9 @@ static regm_result_t regex_machine_feed(regex_machine_t *regm, wchar_t ch)
val search_regex(val haystack, val needle_regex, val start,
val from_end)
{
+ if (!start)
+ start = zero;
+
if (length_str_lt(haystack, start)) {
return nil;
} else {
@@ -1698,6 +1701,8 @@ val match_regex(val str, val reg, val pos)
regex_machine_t regm;
val i, retval;
regm_result_t last_res = REGM_INCOMPLETE;
+ if (!pos)
+ pos = zero;
regex_machine_init(&regm, reg);