File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
branches/dist-snap/src/libsyntax/parse Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,6 @@ refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8
8
refs/heads/try2: d0c6ce338884ee21843f4b40bf6bf18d222ce5df
9
9
refs/heads/incoming: d9317a174e434d4c99fc1a37fd7dc0d2f5328d37
10
- refs/heads/dist-snap: 0e3daa45e26730b3d313042e1c7da0a5c42d6362
10
+ refs/heads/dist-snap: 76f8cfb26c7aa38cf066c42ea500a57d48fc828d
11
11
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
12
12
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
Original file line number Diff line number Diff line change @@ -414,7 +414,6 @@ fn temporary_keyword_table() -> HashMap<~str, ()> {
414
414
fn restricted_keyword_table ( ) -> HashMap < ~str , ( ) > {
415
415
let words = str_hash ( ) ;
416
416
let keys = ~[
417
- ~"unsafe "
418
417
] ;
419
418
for keys. each |word| {
420
419
words. insert ( word, ( ) ) ;
@@ -439,7 +438,7 @@ fn strict_keyword_table() -> HashMap<~str, ()> {
439
438
~"ref ", ~"return ",
440
439
~" struct",
441
440
~"true", ~"trait ", ~"type ",
442
- ~"use ",
441
+ ~"unsafe " , ~" use ",
443
442
~"while "
444
443
];
445
444
for keys.each |word| {
You can’t perform that action at this time.
0 commit comments