Skip to content

Commit 62a7129

Browse files
committed
---
yaml --- r: 28442 b: refs/heads/try c: df79026 h: refs/heads/master v: v3
1 parent 82b1189 commit 62a7129

File tree

3 files changed

+2
-20
lines changed

3 files changed

+2
-20
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
refs/heads/master: cd6f24f9d14ac90d167386a56e7a6ac1f0318195
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: cd6f24f9d14ac90d167386a56e7a6ac1f0318195
5-
refs/heads/try: 2aa67e9aa9a29e9302337dd56313c4a2023a8900
5+
refs/heads/try: df790261696fb85c0cc4dee3950d7ba89804eb49
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: d0c6ce338884ee21843f4b40bf6bf18d222ce5df

branches/try/src/libsyntax/parse/token.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,6 @@ fn restricted_keyword_table() -> HashMap<~str, ()> {
415415
~"fail", ~"fn",
416416
~"impl",
417417
~"priv", ~"pub",
418-
~"return",
419418
~"struct",
420419
~"unsafe"
421420
];
@@ -438,7 +437,7 @@ fn strict_keyword_table() -> HashMap<~str, ()> {
438437
~"let", ~"log", ~"loop",
439438
~"match", ~"mod", ~"move", ~"mut",
440439
~"pure",
441-
~"ref",
440+
~"ref", ~"return",
442441
~"true", ~"trait", ~"type",
443442
~"unchecked", ~"use",
444443
~"while"

branches/try/src/rustdoc/rustdoc.rs

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -14,23 +14,6 @@ fn run_passes(
1414
doc: doc::doc,
1515
passes: ~[pass]
1616
) -> doc::doc {
17-
18-
#[doc(
19-
brief =
20-
"Run a series of passes over the document",
21-
args(
22-
srv =
23-
"The AST service to provide to the passes",
24-
doc =
25-
"The document to transform",
26-
passes =
27-
"The list of passes used to transform the document"
28-
),
29-
return =
30-
"The transformed document that results from folding the \
31-
original through each pass"
32-
)];
33-
3417
let mut passno = 0;
3518
do vec::foldl(doc, passes) |doc, pass| {
3619
log(debug, fmt!("pass #%d", passno));

0 commit comments

Comments
 (0)