summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2012-03-24 00:52:51 -0700
committerKaz Kylheku <kaz@kylheku.com>2012-03-24 00:52:51 -0700
commitdc1ae5cd093466d815c52167a21db78ade601763 (patch)
tree1cea7d836a95cf7c2e2e96b249fddaf200e71551 /ChangeLog
parent7ea334385cb123772e86341148b32ac0a1783741 (diff)
downloadtxr-dc1ae5cd093466d815c52167a21db78ade601763.tar.gz
txr-dc1ae5cd093466d815c52167a21db78ade601763.tar.bz2
txr-dc1ae5cd093466d815c52167a21db78ade601763.zip
Bugfix: code like @(skip)@{var /partial/} where
the regular expression does not match all the way to the end of the line was getting by the check for a complete match. * match.c (do_match_line): Loses the second parameter named completely. The check whether the line was matched completely is done higher up, in match_line_completely. This is needed because do_match_line has some early successful return cases which bypass the check. (match_line): Remove second paramter in call to do_match_line. (match_line_completely): Do the check here that the line was matched completely. Nothing can get by this. (v_freeform): Do notpass second nil argument to do_match_line.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog17
1 files changed, 17 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 3c6e0367..a1e0a386 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,22 @@
2012-03-24 Kaz Kylheku <kaz@kylheku.com>
+ Bugfix: code like @(skip)@{var /partial/} where
+ the regular expression does not match all the way to
+ the end of the line was getting by the check for
+ a complete match.
+
+ * match.c (do_match_line): Loses the second parameter
+ named completely. The check whether the line was matched
+ completely is done higher up, in match_line_completely.
+ This is needed because do_match_line has some early
+ successful return cases which bypass the check.
+ (match_line): Remove second paramter in call to do_match_line.
+ (match_line_completely): Do the check here that the line
+ was matched completely. Nothing can get by this.
+ (v_freeform): Do notpass second nil argument to do_match_line.
+
+2012-03-24 Kaz Kylheku <kaz@kylheku.com>
+
* lib.c (search_str): If start_num is nil, default it to zero.
This is needed for this to work right as an optional argument.