summary refs log tree commit diff
path: root/src/libsyntax/parse/lexer.rs
diff options
context:
space:
mode:
authorPaul Stansifer <paul.stansifer@gmail.com>2012-06-12 10:50:17 -0700
committerPaul Stansifer <paul.stansifer@gmail.com>2012-06-15 12:41:41 -0700
commitd6522ab2d3f7ab03c6d5d93ea196137823d2cfcf (patch)
tree22fbcaa419a7f10e75a728f810a21b13875561e9 /src/libsyntax/parse/lexer.rs
parentd906fba63621d049bdbd0fe9478fef383efb2341 (diff)
downloadrust-d6522ab2d3f7ab03c6d5d93ea196137823d2cfcf.tar.gz
rust-d6522ab2d3f7ab03c6d5d93ea196137823d2cfcf.zip
Beginning of support for interpolation into token trees.
Diffstat (limited to 'src/libsyntax/parse/lexer.rs')
-rw-r--r--src/libsyntax/parse/lexer.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/parse/lexer.rs b/src/libsyntax/parse/lexer.rs
index 28369dbb5a5..8849da5d270 100644
--- a/src/libsyntax/parse/lexer.rs
+++ b/src/libsyntax/parse/lexer.rs
@@ -45,7 +45,7 @@ fn new_tt_reader(span_diagnostic: diagnostic::span_handler,
               mut cur_tok: token::EOF, /* dummy value, never read */
               mut cur_chpos: 0u /* dummy value, never read */
              };
-    //tt_next_token(r); /* get cur_tok and cur_chpos set up */
+    tt_next_token(r); /* get cur_tok and cur_chpos set up */
     ret r;
 }