summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2012-12-25 12:21:53 -0700
committerKarl Williamson <public@khwilliamson.com>2012-12-28 10:38:54 -0700
commitbf15db5a50bd82bb6a683370e59f4c99aa9064d5 (patch)
treea415ba488ae5c0ed903778c9db27fec3593c829b
parentf799ce5b1c4ca739689451f7214896b548302a75 (diff)
downloadperl-bf15db5a50bd82bb6a683370e59f4c99aa9064d5.tar.gz
regcomp.c: Reword comment
To more accurately reflect newer code
-rw-r--r--regcomp.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/regcomp.c b/regcomp.c
index 085bb62901..ce5e9e6a72 100644
--- a/regcomp.c
+++ b/regcomp.c
@@ -7231,9 +7231,7 @@ Perl__invlist_search(pTHX_ SV* const invlist, const UV cp)
return -1;
}
- /* If the code point is before the first element, return failure. (We
- * can't combine this with the test above, because we can't get the array
- * unless we know the list is non-empty) */
+ /* (We can't get the array unless we know the list is non-empty) */
array = invlist_array(invlist);
mid = invlist_previous_index(invlist);