frontend: repl: remove line continuations from input produced by line-ed

This commit is contained in:
2024-11-19 15:59:05 +00:00
parent b62c048498
commit ea3c01204b

View File

@@ -11,6 +11,8 @@ int repl(const b_command *cmd, const b_arglist *args, const b_array *_)
{
char buf[1024];
struct line_ed *ed = line_ed_create();
line_ed_set_flags(ed, LINE_ED_REMOVE_CONTINUATIONS);
struct ivy_lexer *lex;
enum ivy_status status = ivy_lexer_create(&lex);