Removed the ends of line from the comments regex

This commit is contained in:
Mariano Uvalle 2019-05-06 16:35:53 -05:00
parent e2eb9dfa6c
commit 685194d457

View file

@ -170,7 +170,7 @@ t_plus = r'\+'
t_minus = r'-' t_minus = r'-'
t_mul = r'\*' t_mul = r'\*'
t_string = r'\'[a-zA-Z0-9 \?\:\t\r\n\f()\[\]\&\!\@\#\$\%\^\-\=\+\/\,]*\'' t_string = r'\'[a-zA-Z0-9 \?\:\t\r\n\f()\[\]\&\!\@\#\$\%\^\-\=\+\/\,]*\''
t_comment = r'![a-zA-Z0-9 \?\:\t\r\n\f()\[\]\&\!\@\#\$\%\^\-\=\+\/\,]*\n' t_comment = r'![a-zA-Z0-9 \?\:\t\r\f()\[\]\&\!\@\#\$\%\^\-\=\+\/\,]*\n'
t_or = r'\.or\.' t_or = r'\.or\.'
t_and = r'\.and\.' t_and = r'\.and\.'
t_not = r'\.not\.' t_not = r'\.not\.'