diff options
| author | Roy Frostig <[email protected]> | 2010-07-22 12:45:58 -0700 |
|---|---|---|
| committer | Roy Frostig <[email protected]> | 2010-07-22 12:45:58 -0700 |
| commit | 1ae13b3fdd02593581b8ccd374ea4971d473e9dc (patch) | |
| tree | 1764bbae771080c736c58d2d5d89c4fab114ff5e /src/boot/fe | |
| parent | XFAIL task-comm-5, it's burning the tinderboxes. (diff) | |
| download | rust-1ae13b3fdd02593581b8ccd374ea4971d473e9dc.tar.xz rust-1ae13b3fdd02593581b8ccd374ea4971d473e9dc.zip | |
Source FIXME annotations for issue #81 and a correction to STMT_bind fmt.
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 76e6e306..390d944d 100644 --- a/src/boot/fe/ast.ml +++ b/src/boot/fe/ast.ml @@ -1013,7 +1013,7 @@ and fmt_stmt_body (ff:Format.formatter) (s:stmt) : unit = | STMT_bind (dst, fn, arg_opts) -> fmt_lval ff dst; - fmt ff " = "; + fmt ff " = bind "; fmt_lval ff fn; fmt_atom_opts ff arg_opts; fmt ff ";"; |