aboutsummaryrefslogtreecommitdiffstats
path: root/driver/Driveraux.ml
diff options
context:
space:
mode:
Diffstat (limited to 'driver/Driveraux.ml')
-rw-r--r--driver/Driveraux.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/driver/Driveraux.ml b/driver/Driveraux.ml
index a773b37c..de1326ce 100644
--- a/driver/Driveraux.ml
+++ b/driver/Driveraux.ml
@@ -62,10 +62,10 @@ let command stdout args =
let gnu_quote arg =
let len = String.length arg in
let buf = Buffer.create len in
- String.iter (fun c -> match c with
+ String.iter (fun c -> begin match c with
| ' ' | '\t' | '\r' | '\n' | '\\' | '\'' | '"' ->
Buffer.add_char buf '\\'
- | _ -> ();
+ | _ -> () end;
Buffer.add_char buf c) arg;
Buffer.contents buf