diff options
author | albert-github <albert.tests@gmail.com> | 2018-08-26 11:13:01 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2018-08-26 11:13:01 (GMT) |
commit | a68e6c0724f99dfa6cea25f7d56fb6077100fc85 (patch) | |
tree | 1135a996683164dbeec85cad100d0466568ad63a /src/doctokenizer.h | |
parent | 94a52469b177703d3e0d94bed6c4a48bddba18cb (diff) | |
download | Doxygen-a68e6c0724f99dfa6cea25f7d56fb6077100fc85.zip Doxygen-a68e6c0724f99dfa6cea25f7d56fb6077100fc85.tar.gz Doxygen-a68e6c0724f99dfa6cea25f7d56fb6077100fc85.tar.bz2 |
Correcting warning messages and echoing unknown command
- In case an unknown command is given this was shown as a warning but not as normal text in the output, for this also a distinction between `\`and `@` commands has to be made
- corrected command name in warning messages when handling arguments
- making handling of some warning messages consistent
Diffstat (limited to 'src/doctokenizer.h')
-rw-r--r-- | src/doctokenizer.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/doctokenizer.h b/src/doctokenizer.h index b3b9fa5..d0bdf06 100644 --- a/src/doctokenizer.h +++ b/src/doctokenizer.h @@ -34,12 +34,13 @@ enum Tokens TK_WHITESPACE = 3, TK_LISTITEM = 4, TK_ENDLIST = 5, - TK_COMMAND = 6, + TK_COMMAND = 6, //! Command starting with `@` TK_HTMLTAG = 7, TK_SYMBOL = 8, TK_NEWPARA = 9, TK_RCSTAG = 10, TK_URL = 11, + TK_COMMAND1 = 12, //! Command starting with `\` RetVal_OK = 0x10000, RetVal_SimpleSec = 0x10001, |