Browse Source

fix error on notice

master
zapashcanon 5 years ago
parent
commit
3121030a2a
Signed by: zapashcanon GPG Key ID: 8981C3C62D1D28F1
  1. 2
      src/lexer.ml

2
src/lexer.ml

@ -45,6 +45,8 @@ and line_content buf =
Notice (extract_notice (lxm buf))
| " * ", any_except_eol, eol ->
Action (extract_action (lxm buf))
| " -", any_except_eol, "- ", any_except_eol, eol ->
Notice "TODO"
| _ ->
failwith "unexpected character (line_content)"

Loading…
Cancel
Save