about summary refs log tree commit diff
path: root/src/libsyntax/parse/lexer
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2014-12-08 14:30:13 -0800
committerAlex Crichton <alex@alexcrichton.com>2014-12-08 14:30:13 -0800
commit456ffcdc560c1c7baea116ef1ea03e0f7568102d (patch)
tree6a028c58f33ce86e16caa405841d5dffcb48725c /src/libsyntax/parse/lexer
parent84a7615418749d663d54dd9223a15098b834e2a0 (diff)
downloadrust-456ffcdc560c1c7baea116ef1ea03e0f7568102d.tar.gz
rust-456ffcdc560c1c7baea116ef1ea03e0f7568102d.zip
Revert "Register new snapshots"
This reverts commit 9b443289cf32cbcff16768614340f0c844675340.
Diffstat (limited to 'src/libsyntax/parse/lexer')
-rw-r--r--src/libsyntax/parse/lexer/mod.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libsyntax/parse/lexer/mod.rs b/src/libsyntax/parse/lexer/mod.rs
index ab2c15d54c5..2a77e3e6791 100644
--- a/src/libsyntax/parse/lexer/mod.rs
+++ b/src/libsyntax/parse/lexer/mod.rs
@@ -763,7 +763,7 @@ impl<'a> StringReader<'a> {
         }
     }
 
-    // SNAP 361baab
+    // SNAP c9f6d69
     #[allow(unused)]
     fn old_escape_warning(&mut self, sp: Span) {
         self.span_diagnostic
@@ -796,7 +796,7 @@ impl<'a> StringReader<'a> {
                                     self.scan_unicode_escape(delim)
                                 } else {
                                     let res = self.scan_hex_digits(4u, delim, false);
-                                    // SNAP 361baab
+                                    // SNAP c9f6d69
                                     //let sp = codemap::mk_sp(escaped_pos, self.last_pos);
                                     //self.old_escape_warning(sp);
                                     res
@@ -804,7 +804,7 @@ impl<'a> StringReader<'a> {
                             }
                             'U' if !ascii_only => {
                                 let res = self.scan_hex_digits(8u, delim, false);
-                                // SNAP 361baab
+                                // SNAP c9f6d69
                                 //let sp = codemap::mk_sp(escaped_pos, self.last_pos);
                                 //self.old_escape_warning(sp);
                                 res