diff options
author | Eduardo Julian | 2018-08-22 22:53:11 -0400 |
---|---|---|
committer | Eduardo Julian | 2018-08-22 22:53:11 -0400 |
commit | bf893b3aa2b43c11b1cbb95fb8641f6ae6aa06b0 (patch) | |
tree | 7bc77c25c5a6a7fd5fce054ff4308a11f1d3445a /luxc/src | |
parent | 5e13ae0ad68947249a98dc69ab513bdbeca1697e (diff) |
No more escaping of back-space.
Diffstat (limited to '')
-rw-r--r-- | luxc/src/lux/lexer.clj | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/luxc/src/lux/lexer.clj b/luxc/src/lux/lexer.clj index 37f5fdbed..981b35178 100644 --- a/luxc/src/lux/lexer.clj +++ b/luxc/src/lux/lexer.clj @@ -39,8 +39,6 @@ (case (.charAt raw-line (+ 1 idx)) \v (do (.append buffer "\u000B") (recur (+ 2 idx))) - \b (do (.append buffer "\b") - (recur (+ 2 idx))) \n (do (.append buffer "\n") (recur (+ 2 idx))) \r (do (.append buffer "\r") |