diff options
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/pp_control.ml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/pp_control.ml b/lib/pp_control.ml index 67ae4a20a3..7617d5ca42 100644 --- a/lib/pp_control.ml +++ b/lib/pp_control.ml @@ -105,5 +105,7 @@ let set_depth_boxes v = let get_margin () = Some (Format.pp_get_margin !std_ft ()) let set_margin v = - Format.pp_set_margin !std_ft (match v with None -> default_margin | Some v -> v) + let v = match v with None -> default_margin | Some v -> v in + Format.pp_set_margin !std_ft v; + Format.pp_set_margin !deep_ft v |
