From b8501210aefeff45b2eb75429c6e3ca2c1ecc983 Mon Sep 17 00:00:00 2001 From: BanceDev Date: Tue, 17 Sep 2024 20:44:04 -0400 Subject: changed tokenizer to handle all the chaining operators --- src/lua_api.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lua_api.c') diff --git a/src/lua_api.c b/src/lua_api.c index 99892c7..d40489c 100644 --- a/src/lua_api.c +++ b/src/lua_api.c @@ -99,7 +99,7 @@ static int execute_command(lua_State *L, const char *line) { int status = 0; lush_push_history(line); char *expanded_line = lush_resolve_aliases((char *)line); - char **commands = lush_split_pipes(expanded_line); + char **commands = lush_split_commands(expanded_line); char ***args = lush_split_args(commands, &status); if (status == -1) { -- cgit v1.2.3-59-g8ed1b