This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository eshell.
View the commit online.
commit 5af169c6e606c89d9df8786544adb5c2d9fe48bd
Author: swagtoy <m...@ow.swag.toys>
AuthorDate: Fri Dec 6 18:53:29 2024 -0500
lexer: Handle indentions
---
escript/src/lexer.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/escript/src/lexer.c b/escript/src/lexer.c
index ddb0342..2aa2ee9 100644
--- a/escript/src/lexer.c
+++ b/escript/src/lexer.c
@@ -132,6 +132,12 @@ handle_escape_seq(struct Escript_Lexer* const lex, Eina_Strbuf* const buf, int i
case 'n':
eina_strbuf_append_char(buf, '\n');
break;
+ case 't':
+ eina_strbuf_append_char(buf, '\t');
+ break;
+ case '\\':
+ eina_strbuf_append_char(buf, '\\');
+ break;
default:
return 0;
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.