Skip to content

Commit 763c294

Browse files
committed
fix: ascii start
Signed-off-by: Sachin Beniwal <s474996633@gmail.com>
1 parent c1f4aff commit 763c294

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dune_sexp/lexer.mll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ and atom acc start = parse
182182
{ atom ((template_variable lexbuf) :: acc) start lexbuf }
183183
| "%"
184184
{ atom (Template.add_text acc "%") start lexbuf }
185-
| ['\127'-'\255']
185+
| ['\128'-'\255']
186186
{ error lexbuf Atom.non_ascii_error_message }
187187
| ""
188188
{ Template.token acc ~quoted:false ~start lexbuf }

0 commit comments

Comments
 (0)