diff options
| author | Graydon Hoare <[email protected]> | 2010-06-30 00:52:52 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2010-06-30 00:52:52 -0700 |
| commit | 2a1d88ae0070c22b4e3a924480b06dc3116944ad (patch) | |
| tree | 917df69995e4d3c81fa951cd3abce048d4f7fe31 /src/boot/fe | |
| parent | Get compiler to the point of building std.rc and rustc.rc. (diff) | |
| download | rust-2a1d88ae0070c22b4e3a924480b06dc3116944ad.tar.xz rust-2a1d88ae0070c22b4e3a924480b06dc3116944ad.zip | |
Fix exterior formatter.
Diffstat (limited to 'src/boot/fe')
| -rw-r--r-- | src/boot/fe/ast.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/boot/fe/ast.ml b/src/boot/fe/ast.ml index 8b1ce71f..0c12d405 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 ";" |