From a87df81b8541121b5bad1b0e37b955fe47ae1931 Mon Sep 17 00:00:00 2001 From: BanceDev Date: Fri, 7 Feb 2025 14:40:33 -0500 Subject: made constant for lush_lua builtin index --- src/lush.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/lush.h') diff --git a/src/lush.h b/src/lush.h index 06eb184..d067b36 100644 --- a/src/lush.h +++ b/src/lush.h @@ -19,6 +19,7 @@ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. #define LUSH_H #include +#define LUSH_LUA 5 // alias void lush_add_alias(const char *alias, const char *command); @@ -57,6 +58,6 @@ extern char *prompt_format; // history char *lush_get_past_command(int pos); -void lush_push_history(const char* line); +void lush_push_history(const char *line); #endif // LUSH_H -- cgit v1.2.3-59-g8ed1b