Disabling Format wrapping

It is possible to get ahold of the formatter asprintf uses and set the margin:

  Format.asprintf "%tblah" (fun ppf ->
      Format.pp_set_margin ppf Format.pp_infinity ;
      Format.pp_set_max_indent ppf (Format.pp_infinity - 1) )