Skip to content

Commit 023cbd3

Browse files
authored
Merge pull request #995 from htacg/debug_outp
Refactored debug output.
2 parents 8966539 + d956d6c commit 023cbd3

File tree

2 files changed

+319
-212
lines changed

2 files changed

+319
-212
lines changed

src/lexer.h

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -388,19 +388,15 @@ struct _Lexer
388388

389389
/**
390390
* modes for GetToken()
391-
*
392-
* MixedContent -- for elements which don't accept PCDATA
393-
* Preformatted -- white space preserved as is
394-
* IgnoreMarkup -- for CDATA elements such as script, style
395391
*/
396392
typedef enum
397393
{
398-
IgnoreWhitespace,
399-
MixedContent,
400-
Preformatted,
401-
IgnoreMarkup,
402-
OtherNamespace,
403-
CdataContent
394+
IgnoreWhitespace, /**< */
395+
MixedContent, /**< for elements which don't accept PCDATA */
396+
Preformatted, /**< white space preserved as is */
397+
IgnoreMarkup, /**< for CDATA elements such as script, style */
398+
OtherNamespace, /**< */
399+
CdataContent /**< */
404400
} GetTokenMode;
405401

406402

0 commit comments

Comments
 (0)