aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2015-01-20 10:00:43 -0800
committerAlex Crichton <alex@alexcrichton.com>2015-01-20 10:00:43 -0800
commit31d99cd425242f9dbaba80fa486e1414cc6a9f80 (patch)
treef4589d7415ab2cb2cb43f1d51309a1da810ae84a /src
parentb2ce7ff6d1395db92efc1f86b7c4069f15642f40 (diff)
downloadmilf-rs-31d99cd425242f9dbaba80fa486e1414cc6a9f80.tar.gz
milf-rs-31d99cd425242f9dbaba80fa486e1414cc6a9f80.zip
Remove slash as an escapeable character
Diffstat (limited to 'src')
-rw-r--r--src/parser.rs1
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')) => {