diff options
| author | 2024-09-18 14:57:58 -0400 | |
|---|---|---|
| committer | 2024-09-18 14:57:58 -0400 | |
| commit | ecfbc1f47ff85b71365f2f25bf07291037a5dcc6 (patch) | |
| tree | c869ebe7ef64c1cb23028a1804ed13d75ad2bb8e /src/lush.h | |
| parent | added basic && chaining (diff) | |
fixed && chaining for builtins
Diffstat (limited to 'src/lush.h')
| -rw-r--r-- | src/lush.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -40,7 +40,7 @@ char ***lush_split_args(char **commands, int *status); int lush_execute_command(char **args, int input_fd, int output_fd); int lush_execute_pipeline(char ***commands, int num_commands); -int lush_execute_chain(char ***commands, int num_commands); +int lush_execute_chain(lua_State *L, char ***commands, int num_commands); void lush_format_prompt(const char *prompt_format); |
