summaryrefslogtreecommitdiff
path: root/pcretest.c
diff options
context:
space:
mode:
authorph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2014-01-03 15:15:00 +0000
committerph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2014-01-03 15:15:00 +0000
commit07655468f70a257382c954ee9a12810f2418310f (patch)
tree8436579dfd665e39f105ff1a8eaf95b3cf40d074 /pcretest.c
parent7a1b87172d72044111aaf64400b531323899a766 (diff)
downloadpcre-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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pcretest.c b/pcretest.c
index 782c3f7..d1c0a26 100644
--- a/pcretest.c
+++ b/pcretest.c
@@ -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)