aboutsummaryrefslogtreecommitdiff
path: root/luxc
diff options
context:
space:
mode:
authorEduardo Julian2018-08-22 22:59:20 -0400
committerEduardo Julian2018-08-22 22:59:20 -0400
commit79c2988c1b514657cc384070e66539e51e105987 (patch)
treed263db7a49d3f847edd0605e1d93f70b340e4541 /luxc
parentf4f1d14416770cc223676a7d89ed15a11222ef1b (diff)
No more escaping of vertical-tab.
Diffstat (limited to 'luxc')
-rw-r--r--luxc/src/lux/lexer.clj2
1 files changed, 0 insertions, 2 deletions
diff --git a/luxc/src/lux/lexer.clj b/luxc/src/lux/lexer.clj
index d52464d5d..02f1e088a 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))
- \v (do (.append buffer "\u000B")
- (recur (+ 2 idx)))
\n (do (.append buffer "\n")
(recur (+ 2 idx)))
\" (do (.append buffer "\"")