diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2014-01-27 00:27:47 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2014-01-27 00:27:47 -0800 |
commit | bcc1770bf64c62dc5c6404596017cf73a6c9e25e (patch) | |
tree | f64c291e7a744d117c1de77507476c555b83f530 /regex.h | |
parent | 09eb73cde9c64e6fa29cbb410b25c6dd84a8a6f2 (diff) | |
download | txr-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.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |