Skip to content

Commit

Permalink
Format.
Browse files Browse the repository at this point in the history
  • Loading branch information
toots committed Jun 26, 2023
1 parent 9bf3c6a commit 49706ee
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/lib/sedlexing.ml
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,7 @@ let dummy_uchar = Uchar.of_int 0
let nl_uchar = Uchar.of_int 10

let create refill =
{
empty_lexbuf with
refill;
buf = Array.make chunk_size dummy_uchar;
}
{ empty_lexbuf with refill; buf = Array.make chunk_size dummy_uchar }

let set_position lexbuf position =
lexbuf.offset <- position.Lexing.pos_cnum - lexbuf.pos;
Expand Down

0 comments on commit 49706ee

Please sign in to comment.