From mboxrd@z Thu Jan 1 00:00:00 1970 To: 9fans@cse.psu.edu From: erik quanstrom Message-Id: <20050906014502.8AC6D14114E@dexter-peak.quanstro.net> Date: Mon, 5 Sep 2005 20:45:02 -0500 Subject: [9fans]   vs libhtml Topicbox-Message-UUID: 841645ce-ead0-11e9-9d60-3106f5b1d025 for this html file:   x the   was left intact in the output. i believe that this is the fix: ; rcsdiff lex.c =================================================================== RCS file: RCS/lex.c,v retrieving revision 1.1 diff -r1.1 lex.c 400c400 < #define NCHARTAB (sizeof(chartab)/sizeof(chartab[0])) --- > #define NCHARTAB (sizeof(_chartab)/sizeof(_chartab[0])) at compile time sizeof(chartab)/sizeof(chartab[0]) is zero cause it's generated at runtime. erik