summaryrefslogtreecommitdiffstats
path: root/src/doctokenizer.h
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2018-10-27 14:38:00 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2018-10-27 14:38:00 (GMT)
commitdff7c1af885ceb0210f6c529df4e16b0ebf19164 (patch)
tree5148a04aace214735468d2e3144f3efcbe7f6968 /src/doctokenizer.h
parentcf1c218d74ef52c22f9f22c33b1922c10d8291cd (diff)
downloadDoxygen-dff7c1af885ceb0210f6c529df4e16b0ebf19164.zip
Doxygen-dff7c1af885ceb0210f6c529df4e16b0ebf19164.tar.gz
Doxygen-dff7c1af885ceb0210f6c529df4e16b0ebf19164.tar.bz2
Renamed command and moved duplicated code into a macro
Diffstat (limited to 'src/doctokenizer.h')
-rw-r--r--src/doctokenizer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doctokenizer.h b/src/doctokenizer.h
index d0bdf06..c12e77e 100644
--- a/src/doctokenizer.h
+++ b/src/doctokenizer.h
@@ -34,13 +34,13 @@ enum Tokens
TK_WHITESPACE = 3,
TK_LISTITEM = 4,
TK_ENDLIST = 5,
- TK_COMMAND = 6, //! Command starting with `@`
+ TK_COMMAND_AT = 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 `\`
+ TK_COMMAND_BS = 12, //! Command starting with `\`
RetVal_OK = 0x10000,
RetVal_SimpleSec = 0x10001,