Rename [LR]BRACE to [LR]PAREN.
authorChristoph Mallon <christoph.mallon@gmx.de>
Sun, 20 May 2012 16:56:15 +0000 (18:56 +0200)
committerChristoph Mallon <christoph.mallon@gmx.de>
Sun, 20 May 2012 16:57:02 +0000 (18:57 +0200)
"Brace" usually refers to curly braces.

tokens_punctuator.inc

index a1c7ac2..3d78cfd 100644 (file)
@@ -7,8 +7,8 @@ PUNCTUATOR(PERCENTCOLONPERCENTCOLON, "%:%:", = T_HASHHASH)*/
 
 PUNCTUATOR(LBRACK,          "[", = '[')
 PUNCTUATOR(RBRACK,          "]", = ']')
-PUNCTUATOR(LBRACE,          "(", = '(')
-PUNCTUATOR(RBRACE,          ")", = ')')
+PUNCTUATOR(LPAREN,          "(", = '(')
+PUNCTUATOR(RPAREN,          ")", = ')')
 PUNCTUATOR(LCURLY,          "{", = '{')
 PUNCTUATOR(RCURLY,          "}", = '}')
 PUNCTUATOR(DOT,             ".", = '.')