aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xinstall.sh3
-rw-r--r--src/lush.c1
2 files changed, 4 insertions, 0 deletions
diff --git a/install.sh b/install.sh
index ebdbaeb..405cf6e 100755
--- a/install.sh
+++ b/install.sh
@@ -1,5 +1,8 @@
#!/bin/sh
+echo "Initializing and updating submodules..."
+git submodule update --init --recursive
+
# Function to install packages using apt (Debian/Ubuntu)
install_with_apt() {
sudo apt-get update
diff --git a/src/lush.c b/src/lush.c
index cadc1bc..49b205e 100644
--- a/src/lush.c
+++ b/src/lush.c
@@ -1489,6 +1489,7 @@ int main(int argc, char *argv[]) {
// init lua state
lua_State *L = luaL_newstate();
luaL_openlibs(L);
+ luaopen_compat53(L);
lua_register_api(L);
lua_run_init(L);
om/avatar/d6b757ad4778d8cac81581905dad5f4e?s=13&d=retro' width='13' height='13' alt='Gravatar' /> BanceDev 1-1/+9 2024-09-07fixed error in install.sh instructionsGravatar BanceDev 1-1/+1 2024-09-07fixed bug with cursor alignment when adding text within the bufferGravatar BanceDev 1-1/+11 2024-09-06added API guide to readmeGravatar BanceDev 1-1/+5 2024-09-06Update README.mdGravatar Lance Borden 1-1/+1 2024-09-06better readmeGravatar BanceDev 2-2/+14