Skip to content

Commit

Permalink
Merge pull request #42 from RichardUSTC/master
Browse files Browse the repository at this point in the history
fix regular expression bug of t_XOREQUAL in clex.py of the 'ansic' example
  • Loading branch information
dabeaz committed Apr 17, 2015
2 parents ac3a674 + 0388a5b commit a1ec87d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example/ansic/clex.py
Expand Up @@ -92,7 +92,7 @@ def t_NEWLINE(t):
t_RSHIFTEQUAL = r'>>='
t_ANDEQUAL = r'&='
t_OREQUAL = r'\|='
t_XOREQUAL = r'^='
t_XOREQUAL = r'\^='

# Increment/decrement
t_PLUSPLUS = r'\+\+'
Expand Down

0 comments on commit a1ec87d

Please sign in to comment.