Skip to content

Commit d0ba594

Browse files
committed
---
yaml --- r: 2925 b: refs/heads/master c: 8235e76 h: refs/heads/master i: 2923: 9774377 v: v3
1 parent a5ae31c commit d0ba594

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
---
2-
refs/heads/master: 429e21414b4bbc9a9007be2e376b951fc1c75bc0
2+
refs/heads/master: 8235e76a473f6c650ad6a96dca0b5ef84ebdac4a

trunk/src/comp/pretty/pprust.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1208,9 +1208,13 @@ fn print_ty_fn(&ps s, &ast::proto proto, &option::t[str] id,
12081208
if (proto == ast::proto_fn) {word(s.s, "fn");}
12091209
else {word(s.s, "iter");}
12101210
alt (id) {
1211-
case (some(?id)) {space(s.s); word(s.s, id);}
1211+
case (some(?id)) {
1212+
word(s.s, " ");
1213+
word(s.s, id);
1214+
}
12121215
case (_) {}
12131216
}
1217+
zerobreak(s.s);
12141218
popen(s);
12151219
fn print_arg(&ps s, &ast::ty_arg input) {
12161220
if (input.mode == ast::alias) {word(s.s, "&");}

0 commit comments

Comments
 (0)