Skip to content

Commit 2995a08

Browse files
committed
---
yaml --- r: 2066 b: refs/heads/master c: c41796f h: refs/heads/master v: v3
1 parent 9d83f95 commit 2995a08

File tree

2 files changed

+16
-7
lines changed

2 files changed

+16
-7
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: ce85b9eb7be9a964460a71c8b30e35693df07340
2+
refs/heads/master: c41796f2ca93e5773c835d4c211e812fe165ef90

trunk/src/lib/ExtFmt.rs

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -261,11 +261,20 @@ fn parse_type(str s, uint i, uint lim) -> tup(ty, uint) {
261261

262262
// Functions used by the fmt extension at runtime
263263
mod RT {
264-
fn int_to_str(int i) -> str {
265-
ret _int.to_str(i, 10u);
266-
}
264+
fn int_to_str(int i) -> str {
265+
ret _int.to_str(i, 10u);
266+
}
267267

268-
fn uint_to_str(uint u) -> str {
269-
ret _uint.to_str(u, 10u);
270-
}
268+
fn uint_to_str(uint u) -> str {
269+
ret _uint.to_str(u, 10u);
270+
}
271271
}
272+
273+
// Local Variables:
274+
// mode: rust;
275+
// fill-column: 78;
276+
// indent-tabs-mode: nil
277+
// c-basic-offset: 4
278+
// buffer-file-coding-system: utf-8-unix
279+
// compile-command: "make -k -C .. 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
280+
// End:

0 commit comments

Comments
 (0)