Skip to content

Commit

Permalink
Missed one
Browse files Browse the repository at this point in the history
  • Loading branch information
rossberg committed Oct 25, 2023
1 parent e2dc367 commit 52dc27d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion interpreter/text/lexer.mll
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ let symbol =
['+''-''*''/''\\''^''~''=''<''>''!''?''@''#''$''%''&''|'':''`''.''\'']

let ascii_newline = ['\x0a''\x0d']
let newline = ascii_newline | "\x0a\x0d" | "\xc2\x85"
let newline = ascii_newline | "\x0a\x0d"
let space = [' ''\x09''\x0a''\x0d']
let control = ['\x00'-'\x1f'] # space
let ascii = ['\x00'-'\x7f']
Expand Down

0 comments on commit 52dc27d

Please sign in to comment.