diff options
author | Eduardo Julian | 2018-08-22 22:50:33 -0400 |
---|---|---|
committer | Eduardo Julian | 2018-08-22 22:50:33 -0400 |
commit | 5e13ae0ad68947249a98dc69ab513bdbeca1697e (patch) | |
tree | 96f96c209979c095e48bb17f24e3e168385438cc /luxc | |
parent | d2efa1fd37efa50a460dfa609ddd274d82d082e3 (diff) |
No more escaping of horizontal-tab.
Diffstat (limited to 'luxc')
-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 e81599957..37f5fdbed 100644 --- a/luxc/src/lux/lexer.clj +++ b/luxc/src/lux/lexer.clj @@ -37,8 +37,6 @@ (if (= \\ current-char) (do (assert (< (+ 1 idx) line-length) (str "[Lexer Error] Text is too short for escaping: " raw-line " " idx)) (case (.charAt raw-line (+ 1 idx)) - \t (do (.append buffer "\t") - (recur (+ 2 idx))) \v (do (.append buffer "\u000B") (recur (+ 2 idx))) \b (do (.append buffer "\b") |