diff options
author | Alex Crichton <alex@alexcrichton.com> | 2015-01-20 10:00:43 -0800 |
---|---|---|
committer | Alex Crichton <alex@alexcrichton.com> | 2015-01-20 10:00:43 -0800 |
commit | 31d99cd425242f9dbaba80fa486e1414cc6a9f80 (patch) | |
tree | f4589d7415ab2cb2cb43f1d51309a1da810ae84a /src | |
parent | b2ce7ff6d1395db92efc1f86b7c4069f15642f40 (diff) | |
download | milf-rs-31d99cd425242f9dbaba80fa486e1414cc6a9f80.tar.gz milf-rs-31d99cd425242f9dbaba80fa486e1414cc6a9f80.zip |
Remove slash as an escapeable character
Diffstat (limited to 'src')
-rw-r--r-- | src/parser.rs | 1 |
1 files changed, 0 insertions, 1 deletions
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')) => { |