summaryrefslogtreecommitdiffstats
path: root/dimension/tokenize.h
diff options
context:
space:
mode:
authortavianator <tavianator@antimatter.localdomain>2009-10-29 12:42:41 -0400
committertavianator <tavianator@antimatter.localdomain>2009-10-29 12:42:41 -0400
commitaf2e515209a1778878b3c81999f45bc8f5889185 (patch)
tree7e92de803abde6056b80e70a5498dfdcde60d3e0 /dimension/tokenize.h
parent281a8741c0407e3cc504e98dee7a1e10782b46b2 (diff)
downloaddimension-af2e515209a1778878b3c81999f45bc8f5889185.tar.xz
Rename DMNSN_T_EXCLAMATION to DMNSN_T_BANG.
Diffstat (limited to 'dimension/tokenize.h')
-rw-r--r--dimension/tokenize.h42
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,