diff options
Diffstat (limited to 'stdlib/source/lux/compiler/default/syntax.lux')
-rw-r--r-- | stdlib/source/lux/compiler/default/syntax.lux | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/stdlib/source/lux/compiler/default/syntax.lux b/stdlib/source/lux/compiler/default/syntax.lux index f333917d8..2aaa46992 100644 --- a/stdlib/source/lux/compiler/default/syntax.lux +++ b/stdlib/source/lux/compiler/default/syntax.lux @@ -140,7 +140,6 @@ [code l.any] (case code ## Handle special cases. - "t" (wrap [2 "\t"]) "v" (wrap [2 "\v"]) "b" (wrap [2 "\b"]) "n" (wrap [2 ..new-line]) @@ -624,8 +623,7 @@ (^template [<input> <output>] (^ (char <input>)) (!find-next-escape 2 next-escape end source-code total <output>)) - (["t" "\t"] - ["v" "\v"] + (["v" "\v"] ["b" "\b"] ["n" (static ..new-line)] ["r" "\r"] |