diff options
author | tavianator <tavianator@antimatter.localdomain> | 2009-10-29 12:42:41 -0400 |
---|---|---|
committer | tavianator <tavianator@antimatter.localdomain> | 2009-10-29 12:42:41 -0400 |
commit | af2e515209a1778878b3c81999f45bc8f5889185 (patch) | |
tree | 7e92de803abde6056b80e70a5498dfdcde60d3e0 /dimension/tokenize.h | |
parent | 281a8741c0407e3cc504e98dee7a1e10782b46b2 (diff) | |
download | dimension-af2e515209a1778878b3c81999f45bc8f5889185.tar.xz |
Rename DMNSN_T_EXCLAMATION to DMNSN_T_BANG.
Diffstat (limited to 'dimension/tokenize.h')
-rw-r--r-- | dimension/tokenize.h | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/dimension/tokenize.h b/dimension/tokenize.h index 4e16909..51da2a2 100644 --- a/dimension/tokenize.h +++ b/dimension/tokenize.h @@ -21,27 +21,27 @@ typedef enum { /* Punctuation */ - DMNSN_T_LBRACE, /* { */ - DMNSN_T_RBRACE, /* } */ - DMNSN_T_LPAREN, /* ( */ - DMNSN_T_RPAREN, /* ) */ - DMNSN_T_LBRACKET, /* [ */ - DMNSN_T_RBRACKET, /* ] */ - DMNSN_T_LT, /* < */ - DMNSN_T_GT, /* > */ - DMNSN_T_PLUS, /* + */ - DMNSN_T_MINUS, /* - */ - DMNSN_T_STAR, /* * */ - DMNSN_T_SLASH, /* / */ - DMNSN_T_COMMA, /* , */ - DMNSN_T_EQUALS, /* = */ - DMNSN_T_SEMICOLON, /* ; */ - DMNSN_T_QUESTION, /* ? */ - DMNSN_T_COLON, /* : */ - DMNSN_T_AND, /* & */ - DMNSN_T_EXCLAMATION, /* ! */ - DMNSN_T_DOT, /* . */ - DMNSN_T_PIPE, /* | */ + DMNSN_T_LBRACE, /* { */ + DMNSN_T_RBRACE, /* } */ + DMNSN_T_LPAREN, /* ( */ + DMNSN_T_RPAREN, /* ) */ + DMNSN_T_LBRACKET, /* [ */ + DMNSN_T_RBRACKET, /* ] */ + DMNSN_T_LT, /* < */ + DMNSN_T_GT, /* > */ + DMNSN_T_PLUS, /* + */ + DMNSN_T_MINUS, /* - */ + DMNSN_T_STAR, /* * */ + DMNSN_T_SLASH, /* / */ + DMNSN_T_COMMA, /* , */ + DMNSN_T_EQUALS, /* = */ + DMNSN_T_SEMICOLON, /* ; */ + DMNSN_T_QUESTION, /* ? */ + DMNSN_T_COLON, /* : */ + DMNSN_T_AND, /* & */ + DMNSN_T_BANG, /* ! */ + DMNSN_T_DOT, /* . */ + DMNSN_T_PIPE, /* | */ /* Numeric values */ DMNSN_T_INT, |