diff options
Diffstat (limited to 'src/pyscanner.l')
-rw-r--r-- | src/pyscanner.l | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/pyscanner.l b/src/pyscanner.l index 0a4fbcf..db39ff4 100644 --- a/src/pyscanner.l +++ b/src/pyscanner.l @@ -797,11 +797,13 @@ STARTDOCSYMS ^{B}"##"/[^#] } {TRIDOUBLEQUOTE} { // start of a comment block + current->program+=yytext; initTriDoubleQuoteBlock(); BEGIN(TripleComment); } {TRISINGLEQUOTE} { // start of a comment block + current->program+=yytext; initTriSingleQuoteBlock(); BEGIN(TripleComment); } |