diff options
author | ph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15> | 2014-01-03 15:15:00 +0000 |
---|---|---|
committer | ph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15> | 2014-01-03 15:15:00 +0000 |
commit | 07655468f70a257382c954ee9a12810f2418310f (patch) | |
tree | 8436579dfd665e39f105ff1a8eaf95b3cf40d074 /pcretest.c | |
parent | 7a1b87172d72044111aaf64400b531323899a766 (diff) | |
download | pcre-07655468f70a257382c954ee9a12810f2418310f.tar.gz |
Reword pcretest messages and clarify "first char" meaning.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@1433 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'pcretest.c')
-rw-r--r-- | pcretest.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4282,12 +4282,12 @@ while (!done) if (new_info(re, extra, PCRE_INFO_FIRSTTABLE, &start_bits) == 0) { if (start_bits == NULL) - fprintf(outfile, "No set of starting bytes\n"); + fprintf(outfile, "No starting char list\n"); else { int i; int c = 24; - fprintf(outfile, "Starting byte set: "); + fprintf(outfile, "Starting chars: "); for (i = 0; i < 256; i++) { if ((start_bits[i/8] & (1<<(i&7))) != 0) |