aboutsummaryrefslogtreecommitdiff
path: root/src/comp
diff options
context:
space:
mode:
Diffstat (limited to 'src/comp')
-rw-r--r--src/comp/fe/parser.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/comp/fe/parser.rs b/src/comp/fe/parser.rs
index 24228a8a..fd11efe1 100644
--- a/src/comp/fe/parser.rs
+++ b/src/comp/fe/parser.rs
@@ -50,8 +50,7 @@ state fn new_parser(session.session sess, str path) -> parser {
}
state fn expect(parser p, token.token t) {
- // FIXME: comparing tags would be good. One of these days.
- if (true /* p.peek() == t */) {
+ if (p.peek() == t) {
p.bump();
} else {
let str s = "expecting ";