mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-06 06:48:48 +00:00
Fixed \r escaping
This commit is contained in:
parent
5dfd0a3b43
commit
b8e5cfeb7b
1 changed files with 4 additions and 0 deletions
|
|
@ -1304,6 +1304,10 @@ class env prg mode =
|
||||||
Buffer.add_char buf '\\';
|
Buffer.add_char buf '\\';
|
||||||
Buffer.add_char buf 't';
|
Buffer.add_char buf 't';
|
||||||
iterate (i + 2)
|
iterate (i + 2)
|
||||||
|
| 'r' ->
|
||||||
|
Buffer.add_char buf '\\';
|
||||||
|
Buffer.add_char buf 'r';
|
||||||
|
iterate (i + 2)
|
||||||
| _ ->
|
| _ ->
|
||||||
Buffer.add_char buf '\\';
|
Buffer.add_char buf '\\';
|
||||||
Buffer.add_char buf '\\';
|
Buffer.add_char buf '\\';
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue