aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--toplevel/ide_intf.ml7
1 files changed, 3 insertions, 4 deletions
diff --git a/toplevel/ide_intf.ml b/toplevel/ide_intf.ml
index c702eabb20..5987602127 100644
--- a/toplevel/ide_intf.ml
+++ b/toplevel/ide_intf.ml
@@ -359,11 +359,10 @@ let rec pr_setoptions opts =
let pr_getoptions opts =
let map (key, s) =
let key = String.concat " " key in
- s.opt_name
-(* Printf.sprintf "%s: sync := %b; depr := %b; name := %s; value := %s" *)
-(* key s.opt_sync s.opt_depr s.opt_name (*(pr_option_value s.opt_value)*) "" *)
+ Printf.sprintf "%s: sync := %b; depr := %b; name := %s; value := %s\n"
+ key s.opt_sync s.opt_depr s.opt_name (pr_option_value s.opt_value)
in
- "\n " ^ String.concat "\n " (List.map map opts)
+ "\n" ^ String.concat "" (List.map map opts)
let pr_call = function
| Interp (r,b,s) ->