From 73a258c24753f664577865239be7cd0a136e25b4 Mon Sep 17 00:00:00 2001 From: David Beazley Date: Sun, 4 May 2008 15:46:44 +0000 Subject: Various bug fixes and cleanup --- example/ansic/clex.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'example') 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) -- cgit v1.2.1