Tidy comment

This commit is contained in:
Philip.Hazel 2015-12-03 17:08:23 +00:00
parent 1f9b2a2e4b
commit addec0d2ae
1 changed files with 3 additions and 2 deletions

View File

@ -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 */