From 2a1d88ae0070c22b4e3a924480b06dc3116944ad Mon Sep 17 00:00:00 2001 From: Graydon Hoare Date: Wed, 30 Jun 2010 00:52:52 -0700 Subject: [PATCH] Fix exterior formatter. --- src/boot/fe/ast.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/boot/fe/ast.ml b/src/boot/fe/ast.ml index 8b1ce71fb34..0c12d405afc 100644 --- a/src/boot/fe/ast.ml +++ b/src/boot/fe/ast.ml @@ -1169,7 +1169,7 @@ and fmt_stmt_body (ff:Format.formatter) (s:stmt) : unit = | STMT_init_exterior (lv, at) -> fmt_lval ff lv; - fmt ff " = @"; + fmt ff " = @@"; fmt_atom ff at; fmt ff ";"