File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
trunk/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 1
1
---
2
- refs/heads/master: 0e3daa45e26730b3d313042e1c7da0a5c42d6362
2
+ refs/heads/master: 76f8cfb26c7aa38cf066c42ea500a57d48fc828d
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
4
refs/heads/snap-stage3: cd6f24f9d14ac90d167386a56e7a6ac1f0318195
5
5
refs/heads/try: ffbe0e0e00374358b789b0037bcb3a577cd218be
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