summaryrefslogtreecommitdiff
path: root/example
diff options
context:
space:
mode:
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)