From: Matthew Fernandez Date: Sun, 21 Nov 2021 19:44:38 +0000 (-0800) Subject: lexstate_t: standardize on more modern '//' comments X-Git-Tag: 3.0.0~145^2~8 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1d2de19605d0e0af49033549e6a195636e6f2c60;p=graphviz lexstate_t: standardize on more modern '//' comments --- diff --git a/lib/common/htmllex.c b/lib/common/htmllex.c index 3340ec498..53b1210c0 100644 --- a/lib/common/htmllex.c +++ b/lib/common/htmllex.c @@ -36,16 +36,16 @@ typedef struct { #ifdef HAVE_EXPAT XML_Parser parser; #endif - char* ptr; /* input source */ - int tok; /* token type */ - agxbuf* xb; /* buffer to gather T_string data */ - agxbuf lb; /* buffer for translating lexical data */ - char warn; /* set if warning given */ - char error; /* set if error given */ - char inCell; /* set if in TD to allow T_string */ - char mode; /* for handling artificial .. */ - char *currtok; /* for error reporting */ - char *prevtok; /* for error reporting */ + char* ptr; // input source + int tok; // token type + agxbuf* xb; // buffer to gather T_string data + agxbuf lb; // buffer for translating lexical data + char warn; // set if warning given + char error; // set if error given + char inCell; // set if in TD to allow T_string + char mode; // for handling artificial .. + char *currtok; // for error reporting + char *prevtok; // for error reporting size_t currtoklen; size_t prevtoklen; } lexstate_t;