Skip to content

Commit

Permalink
fix test 206
Browse files Browse the repository at this point in the history
  • Loading branch information
tatchi committed Aug 2, 2022
1 parent e51ad12 commit 07fe574
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
3 changes: 1 addition & 2 deletions src/parser.ml
Original file line number Diff line number Diff line change
Expand Up @@ -1444,8 +1444,7 @@ let link_destination st =
| Some '&' ->
entity buf st;
loop n
| Some (' ' | '\t' | '\x00' .. '\x1F' | '\x7F' | '\x80' .. '\x9F')
| None ->
| Some (' ' | '\t' | '\x00' .. '\x1F' | '\x7F') | None ->
if n > 0 || Buffer.length buf = 0 then raise Fail;
Buffer.contents buf
| Some c ->
Expand Down
1 change: 1 addition & 0 deletions tests/dune.inc

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tests/extract_tests.ml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ let protect ~finally f =
finally ();
r

let disabled = [ 206; 215; 216; 519 ]
let disabled = [ 215; 216; 519 ]

let with_open_in fn f =
let ic = open_in fn in
Expand Down

0 comments on commit 07fe574

Please sign in to comment.