--- code/trunk/dftables.c 2007/02/24 21:38:53 29 +++ code/trunk/dftables.c 2007/02/24 21:39:21 43 @@ -8,7 +8,7 @@ Written by: Philip Hazel - Copyright (c) 1997-1999 University of Cambridge + Copyright (c) 1997-2000 University of Cambridge ----------------------------------------------------------------------------- Permission is granted to anyone to use this software for any purpose on any @@ -59,7 +59,7 @@ "/*************************************************\n" "* Perl-Compatible Regular Expressions *\n" "*************************************************/\n\n" - "/* This file is automatically written by the makechartables auxiliary \n" + "/* This file is automatically written by the dftables auxiliary \n" "program. If you edit it by hand, you might like to edit the Makefile to \n" "prevent its ever being regenerated.\n\n" "This file is #included in the compilation of pcre.c to build the default\n" @@ -89,9 +89,11 @@ printf(",\n\n"); printf( - "/* This table contains bit maps for digits, 'word' chars, and white\n" - "space. Each map is 32 bytes long and the bits run from the least\n" - "significant end of each byte. */\n\n"); + "/* This table contains bit maps for various character classes.\n" + "Each map is 32 bytes long and the bits run from the least\n" + "significant end of each byte. The classes that have their own\n" + "maps are: space, xdigit, digit, upper, lower, word, graph\n" + "print, punct, and cntrl. Other classes are built from combinations. */\n\n"); printf(" "); for (i = 0; i < cbit_length; i++) @@ -104,7 +106,7 @@ printf("0x%02x", *tables++); if (i != cbit_length - 1) printf(","); } -printf(" ,\n\n"); +printf(",\n\n"); printf( "/* This table identifies various classes of character by individual bits:\n"