From 31d99cd425242f9dbaba80fa486e1414cc6a9f80 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Tue, 20 Jan 2015 10:00:43 -0800 Subject: Remove slash as an escapeable character --- src/parser.rs | 1 - 1 file changed, 1 deletion(-) (limited to 'src/parser.rs') diff --git a/src/parser.rs b/src/parser.rs index 8065aa8..f3bfdb6 100644 --- a/src/parser.rs +++ b/src/parser.rs @@ -369,7 +369,6 @@ impl<'a> Parser<'a> { Some((_, 'f')) => Some('\u{c}'), Some((_, 'r')) => Some('\u{d}'), Some((_, '"')) => Some('\u{22}'), - Some((_, '/')) => Some('\u{2f}'), Some((_, '\\')) => Some('\u{5c}'), Some((pos, c @ 'u')) | Some((pos, c @ 'U')) => { -- cgit v1.2.3