Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Why3
why3
Commits
1827453a
Commit
1827453a
authored
May 15, 2018
by
Guillaume Melquiond
Browse files
Allow escaping in code embedded in comments.
parent
75be7eb6
Changes
1
Show whitespace changes
Inline
Side-by-side
src/why3doc/doc_lexer.mll
View file @
1827453a
...
...
@@ -176,6 +176,10 @@ and scan_embedded fmt depth = parse
pp_print_char fmt ']';
scan_embedded fmt (depth - 1) lexbuf
end }
| "\\[" { pp_print_char fmt '[';
scan_embedded fmt depth lexbuf }
| "\\]" { pp_print_char fmt ']';
scan_embedded fmt depth lexbuf }
| "*)" { backtrack lexbuf }
| eof { () }
| ident as s
...
...
Raphaël Rieu-Helft
@rrieuhel
mentioned in issue
#132 (closed)
·
Jun 13, 2018
mentioned in issue
#132 (closed)
mentioned in issue #132
Toggle commit list
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment