summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorph10 <ph10@6239d852-aaf2-0410-a92c-79f79f948069>2015-12-03 17:08:23 +0000
committerph10 <ph10@6239d852-aaf2-0410-a92c-79f79f948069>2015-12-03 17:08:23 +0000
commit43243cc9f0bd8eeb9fb1474a0ea5ae9e9fce25b8 (patch)
tree58a86bd1d6580a3ca5f91c6972c1b1dbe1d4e8e7
parent146e061d0700d7e4f469d1628e978bf59ad356e6 (diff)
downloadpcre2-43243cc9f0bd8eeb9fb1474a0ea5ae9e9fce25b8.tar.gz
Tidy comment
git-svn-id: svn://vcs.exim.org/pcre2/code/trunk@457 6239d852-aaf2-0410-a92c-79f79f948069
-rw-r--r--src/pcre2_match.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/pcre2_match.c b/src/pcre2_match.c
index fb95595..3740982 100644
--- a/src/pcre2_match.c
+++ b/src/pcre2_match.c
@@ -2408,8 +2408,9 @@ for (;;)
ecode++;
break;
- /* Match a single byte, even in UTF-8 mode. This opcode really does match
- any byte, even newline, independent of the setting of PCRE2_DOTALL. */
+ /* Match a single code unit, even in UTF-8 mode. This opcode really does
+ match any code unit, even newline. (It really should be called ANYCODEUNIT,
+ of course - the byte name is from pre-16 bit days.) */
case OP_ANYBYTE:
if (eptr >= mb->end_subject) /* DO NOT merge the eptr++ here; it must */