diff options
| author | Brian Anderson <banderson@mozilla.com> | 2011-08-27 21:15:19 -0700 |
|---|---|---|
| committer | Brian Anderson <andersrb@gmail.com> | 2011-08-30 21:08:07 -0700 |
| commit | 9e2c5f77a413bf99fff1d8b4f0629127a5f9bbd3 (patch) | |
| tree | 7c92c19ffa810bfd8eecd75f13eed18267f567ae /src/comp | |
| parent | fc0212a63bf888008cffe256663317e3472fbab4 (diff) | |
| download | rust-9e2c5f77a413bf99fff1d8b4f0629127a5f9bbd3.tar.gz rust-9e2c5f77a413bf99fff1d8b4f0629127a5f9bbd3.zip | |
Remove the %S istr conversion from #fmt
I want to do the #fmt transition a different way. Issue #855
Diffstat (limited to 'src/comp')
| -rw-r--r-- | src/comp/syntax/ext/fmt.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/comp/syntax/ext/fmt.rs b/src/comp/syntax/ext/fmt.rs index 121300f6490..30879dc8a0a 100644 --- a/src/comp/syntax/ext/fmt.rs +++ b/src/comp/syntax/ext/fmt.rs @@ -243,7 +243,6 @@ fn pieces_to_expr(cx: &ext_ctxt, sp: span, pieces: &[piece], } alt cnv.ty { ty_str. { ret make_conv_call(cx, arg.span, ~"str", cnv, arg); } - ty_istr. { ret make_conv_call(cx, arg.span, ~"istr", cnv, arg); } ty_int(sign) { alt sign { signed. { ret make_conv_call(cx, arg.span, ~"int", cnv, arg); } @@ -300,7 +299,6 @@ fn pieces_to_expr(cx: &ext_ctxt, sp: span, pieces: &[piece], alt c.ty { ty_bool. { log "type: bool"; } ty_str. { log "type: str"; } - ty_istr. { log "type: istr"; } ty_char. { log "type: char"; } ty_int(s) { alt s { |
