summaryrefslogtreecommitdiffstats
path: root/regex.h
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2014-01-27 00:27:47 -0800
committerKaz Kylheku <kaz@kylheku.com>2014-01-27 00:27:47 -0800
commitbcc1770bf64c62dc5c6404596017cf73a6c9e25e (patch)
treef64c291e7a744d117c1de77507476c555b83f530 /regex.h
parent09eb73cde9c64e6fa29cbb410b25c6dd84a8a6f2 (diff)
downloadtxr-bcc1770bf64c62dc5c6404596017cf73a6c9e25e.tar.gz
txr-bcc1770bf64c62dc5c6404596017cf73a6c9e25e.tar.bz2
txr-bcc1770bf64c62dc5c6404596017cf73a6c9e25e.zip
* regex.c (match_regex_right): Fix semantics of second argument
to something more useful. * regex.h (match_regex_right): Change name of parameter. * txr.1: Documented match-regex-right.
Diffstat (limited to 'regex.h')
-rw-r--r--regex.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/regex.h b/regex.h
index 1ea148bd..1c531cff 100644
--- a/regex.h
+++ b/regex.h
@@ -31,7 +31,7 @@ val regex_compile(val regex, val error_stream);
val regexp(val);
val search_regex(val haystack, val needle_regex, val start_num, val from_end);
val match_regex(val str, val regex, val pos);
-val match_regex_right(val str, val regex, val pos);
+val match_regex_right(val str, val regex, val end);
val regsub(val regex, val repl, val str);
void regex_init(void);