diff options
author | Karl Williamson <public@khwilliamson.com> | 2012-12-25 12:21:53 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2012-12-28 10:38:54 -0700 |
commit | bf15db5a50bd82bb6a683370e59f4c99aa9064d5 (patch) | |
tree | a415ba488ae5c0ed903778c9db27fec3593c829b | |
parent | f799ce5b1c4ca739689451f7214896b548302a75 (diff) | |
download | perl-bf15db5a50bd82bb6a683370e59f4c99aa9064d5.tar.gz |
regcomp.c: Reword comment
To more accurately reflect newer code
-rw-r--r-- | regcomp.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -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); |