summaryrefslogtreecommitdiff
path: root/debugger/loadprinter.ml
diff options
context:
space:
mode:
authorDamien Doligez <damien.doligez-inria.fr>2010-01-22 12:48:24 +0000
committerDamien Doligez <damien.doligez-inria.fr>2010-01-22 12:48:24 +0000
commit04b1656222698bd7e92f213e9a718b7a4185643a (patch)
tree6186d1ba1e00adb1232908f95cb92c299902a943 /debugger/loadprinter.ml
parentbdc0fadee2dc9669818955486b4c3497016edda5 (diff)
downloadocaml-04b1656222698bd7e92f213e9a718b7a4185643a.tar.gz
clean up spaces and tabs
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@9547 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'debugger/loadprinter.ml')
-rw-r--r--debugger/loadprinter.ml6
1 files changed, 2 insertions, 4 deletions
diff --git a/debugger/loadprinter.ml b/debugger/loadprinter.ml
index 07d7b78aeb..ac5aa0187d 100644
--- a/debugger/loadprinter.ml
+++ b/debugger/loadprinter.ml
@@ -120,10 +120,10 @@ let find_printer_type lid =
with Ctype.Unify _ ->
(match_printer_type desc "printer_type_old", true) in
(ty_arg, path, is_old_style)
- with
+ with
| Not_found -> raise(Error(Unbound_identifier lid))
| Ctype.Unify _ -> raise(Error(Wrong_type lid))
-
+
let install_printer ppf lid =
let (ty_arg, path, is_old_style) = find_printer_type lid in
let v =
@@ -167,5 +167,3 @@ let report_error ppf = function
| No_active_printer lid ->
fprintf ppf "@[%a is not currently active as a printing function.@]@."
Printtyp.longident lid
-
-