We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0a4ca58 + 654e2a3 commit b6bd829Copy full SHA for b6bd829
src/octLexer.mll
@@ -465,7 +465,7 @@ and verb = parse
465
{ raise (LexerError(curr_loc lexbuf, Nested_verbatim)) }
466
| verb end
467
{ use_start_loc lexbuf;
468
- Verb (get_raw_buffered_string ()) }
+ Verb (get_buffered_string ()) }
469
| eof
470
{ raise (LexerError(get_start_loc (), Unterminated_verbatim)) }
471
| newline
@@ -525,7 +525,7 @@ and pre_code = parse
525
{ raise (LexerError(curr_loc lexbuf, Nested_pre_code)) }
526
| end_pre_code
527
528
- Pre_Code (get_raw_buffered_string ()) }
+ Pre_Code (get_buffered_string ()) }
529
530
{ raise (LexerError(get_start_loc (), Unterminated_pre_code)) }
531
0 commit comments