consider tab to be whitespace

This commit is contained in:
tali 2024-01-11 00:24:06 -05:00
parent 4d95927bfa
commit 12266e37e7
1 changed files with 3 additions and 3 deletions

View File

@ -58,9 +58,9 @@ exception Incomplete
let crlf = function '\r' | '\n' | '\x00' -> true | _ -> false
let cl = function ':' -> true | _ -> false
let sp = function ' ' -> true | _ -> false
let nocrlf = function '\r' | '\n' | '\x00' -> false | _ -> true
let nospcrlf = function ' ' | '\r' | '\n' | '\x00' -> false | _ -> true
let sp = function ' ' | '\t' -> true | _ -> false
let nocrlf c = not (crlf c)
let nospcrlf c = not (sp c || crlf c)
let startswith str f i =
if i >= String.length str then