summaryrefslogtreecommitdiffabout
path: root/lib
Unidiff
Diffstat (limited to 'lib') (more/less context) (ignore whitespace changes)
-rw-r--r--lib/sitecing_parser.ll1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/sitecing_parser.ll b/lib/sitecing_parser.ll
index 8dd8d5f..53df9a0 100644
--- a/lib/sitecing_parser.ll
+++ b/lib/sitecing_parser.ll
@@ -465,24 +465,25 @@ NOIDCHAR [^A-Za-z0-9_]
465 \'\\.\'{ 465 \'\\.\'{
466 ECHO; 466 ECHO;
467 } 467 }
468} 468}
469 469
470<INITIAL,METHODBLOCK,OUTPUTBLOCK>{ 470<INITIAL,METHODBLOCK,OUTPUTBLOCK>{
471 \"soft_anchor(); M().modify(modus_operandi::modus_text); LexerOutput("\\\"",2); 471 \"soft_anchor(); M().modify(modus_operandi::modus_text); LexerOutput("\\\"",2);
472 \nsoft_anchor(); M().modify(modus_operandi::modus_text); LexerOutput("\\n",2); 472 \nsoft_anchor(); M().modify(modus_operandi::modus_text); LexerOutput("\\n",2);
473 \rsoft_anchor(); M().modify(modus_operandi::modus_text); LexerOutput("\\r",2); 473 \rsoft_anchor(); M().modify(modus_operandi::modus_text); LexerOutput("\\r",2);
474 \tsoft_anchor(); M().modify(modus_operandi::modus_text); LexerOutput("\\t",2); 474 \tsoft_anchor(); M().modify(modus_operandi::modus_text); LexerOutput("\\t",2);
475 \bsoft_anchor(); M().modify(modus_operandi::modus_text); LexerOutput("\\b",2); 475 \bsoft_anchor(); M().modify(modus_operandi::modus_text); LexerOutput("\\b",2);
476 \asoft_anchor(); M().modify(modus_operandi::modus_text); LexerOutput("\\a",2); 476 \asoft_anchor(); M().modify(modus_operandi::modus_text); LexerOutput("\\a",2);
477 \\soft_anchor(); M().modify(modus_operandi::modus_text); LexerOutput("\\\\",2);
477 .soft_anchor(); M().modify(modus_operandi::modus_text); ECHO; 478 .soft_anchor(); M().modify(modus_operandi::modus_text); ECHO;
478 {WHITESPACE}+soft_anchor(); M().modify(modus_operandi::modus_text); ECHO; 479 {WHITESPACE}+soft_anchor(); M().modify(modus_operandi::modus_text); ECHO;
479} 480}
480 481
481<DECLBLOCK,IMPLBLOCK,CONSTRUCTOR,DESTRUCTOR,CODEMETHODBLOCK,METHODBLOCK,CODEBLOCK>{ 482<DECLBLOCK,IMPLBLOCK,CONSTRUCTOR,DESTRUCTOR,CODEMETHODBLOCK,METHODBLOCK,CODEBLOCK>{
482 \<\/\%decl\>{ 483 \<\/\%decl\>{
483 if(YY_START!=DECLBLOCK) throw preprocessor_error(CODEPOINT,"tags mismatch",lineno()); 484 if(YY_START!=DECLBLOCK) throw preprocessor_error(CODEPOINT,"tags mismatch",lineno());
484 decl += M().output; 485 decl += M().output;
485 modi.pop_front(); 486 modi.pop_front();
486 BEGIN(INITIAL); 487 BEGIN(INITIAL);
487 } 488 }
488 \<\/\%impl\>{ 489 \<\/\%impl\>{