File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: 49742b86be15f391dc5153d5c9db3572f5142f83
2
+ refs/heads/master: 4eef7b613c7f9435bec591376170791de41fa38c
Original file line number Diff line number Diff line change @@ -285,6 +285,7 @@ fn print_item(&ps s, &@ast::item item) {
285
285
}
286
286
case ( ast:: item_mod ( ?id, ?_mod, _) ) {
287
287
head ( s, "mod" ) ;
288
+ word_nbsp ( s, id) ;
288
289
bopen ( s) ;
289
290
for ( @ast:: item itm in _mod. items) { print_item ( s, itm) ; }
290
291
bclose ( s, item. span ) ;
@@ -481,11 +482,11 @@ fn print_expr(&ps s, &@ast::expr expr) {
481
482
482
483
alt ( expr. node ) {
483
484
case ( ast:: expr_vec ( ?exprs, ?mut , _) ) {
485
+ ibox ( s. s , indent_unit) ;
486
+ word ( s. s , "[" ) ;
484
487
if ( mut == ast:: mut) {
485
488
word_nbsp ( s, "mutable" ) ;
486
489
}
487
- ibox ( s. s , indent_unit) ;
488
- word ( s. s , "[" ) ;
489
490
commasep_exprs ( s, inconsistent, exprs) ;
490
491
word ( s. s , "]" ) ;
491
492
end ( s. s ) ;
You can’t perform that action at this time.
0 commit comments