summaryrefslogtreecommitdiff
path: root/example
diff options
context:
space:
mode:
authorDavid Beazley <dave@dabeaz.com>2008-05-04 15:46:44 +0000
committerDavid Beazley <dave@dabeaz.com>2008-05-04 15:46:44 +0000
commit73a258c24753f664577865239be7cd0a136e25b4 (patch)
tree2cd2568c4798d9fcc914ba0323bb7e54c15f8b1f /example
parent08efa8beab68f9b932a0eb92cc54166856f50a7a (diff)
downloadply-73a258c24753f664577865239be7cd0a136e25b4.tar.gz
Various bug fixes and cleanup
Diffstat (limited to 'example')
-rw-r--r--example/ansic/clex.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/example/ansic/clex.py b/example/ansic/clex.py
index 6b9d7e7..7dc98cd 100644
--- a/example/ansic/clex.py
+++ b/example/ansic/clex.py
@@ -142,7 +142,7 @@ t_CCONST = r'(L)?\'([^\\\n]|(\\.))*?\''
# Comments
def t_comment(t):
- r' /\*(.|\n)*?\*/'
+ r'/\*(.|\n)*?\*/'
t.lineno += t.value.count('\n')
# Preprocessor directive (ignored)