From: Clinton Ebadi Date: Sat, 5 Jan 2019 23:10:46 +0000 (-0500) Subject: fix char syntax X-Git-Tag: release_20190105-3 X-Git-Url: https://git.hcoop.net/hcoop/domtool2.git/commitdiff_plain/9b722c62fde3f05d13e787c2b0f63370685d1708 fix char syntax --- diff --git a/src/plugins/apache.sml b/src/plugins/apache.sml index aecc2e1..524321c 100644 --- a/src/plugins/apache.sml +++ b/src/plugins/apache.sml @@ -97,7 +97,7 @@ val _ = Env.type_one "proxy_reverse_target" val _ = Env.type_one "rewrite_arg" Env.string - (CharVector.all (fn ch => (Char.isGraph ch) andalso not (List.exists (fn c => ch = c) [ #"[", #"]", #",", #"\"", #"'", #"=", #":", "\\" ]))) + (CharVector.all (fn ch => (Char.isGraph ch) andalso not (List.exists (fn c => ch = c) [ #"[", #"]", #",", #"\"", #"'", #"=", #":", #"\\" ]))) val _ = Env.type_one "suexec_flag" Env.bool