about summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorBen Striegel <ben.striegel@gmail.com>2013-01-29 22:12:36 -0500
committerBen Striegel <ben.striegel@gmail.com>2013-01-30 23:18:08 -0500
commitb4f47eca2a99c1ead824e9cf85b12d9efc14eabb (patch)
treec256d4cf900efc77821934da36e3bbf545b1a31b /src/libsyntax
parent1c9b5a83b27aae5017c1c82f5c9d3876b20d4c37 (diff)
downloadrust-b4f47eca2a99c1ead824e9cf85b12d9efc14eabb.tar.gz
rust-b4f47eca2a99c1ead824e9cf85b12d9efc14eabb.zip
RIMOV, round 7
find ./ -type f -name "*.rs" -exec sed -i "s/ mut \([a-zA-Z_]\+\):
~\[mut / mut \1: ~\[/g" {} \;
Diffstat (limited to 'src/libsyntax')
-rw-r--r--src/libsyntax/print/pp.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/print/pp.rs b/src/libsyntax/print/pp.rs
index 249dfa8bede..8174240f68a 100644
--- a/src/libsyntax/print/pp.rs
+++ b/src/libsyntax/print/pp.rs
@@ -264,7 +264,7 @@ pub type printer_ = {
     // BEGIN (if there is any) on top of it. Stuff is flushed off the
     // bottom as it becomes irrelevant due to the primary ring-buffer
     // advancing.
-    mut scan_stack: ~[mut uint],
+    mut scan_stack: ~[uint],
     mut scan_stack_empty: bool, // top==bottom disambiguator
     mut top: uint, // index of top of scan_stack
     mut bottom: uint, // index of bottom of scan_stack