Skip to content

Commit 6a7ef69

Browse files
committed
---
yaml --- r: 32526 b: refs/heads/dist-snap c: df79026 h: refs/heads/master v: v3
1 parent 1f5436d commit 6a7ef69

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
@@ -7,6 +7,6 @@ refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: d0c6ce338884ee21843f4b40bf6bf18d222ce5df
99
refs/heads/incoming: d9317a174e434d4c99fc1a37fd7dc0d2f5328d37
10-
refs/heads/dist-snap: 2aa67e9aa9a29e9302337dd56313c4a2023a8900
10+
refs/heads/dist-snap: df790261696fb85c0cc4dee3950d7ba89804eb49
1111
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1212
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/dist-snap/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/dist-snap/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)