diff options
author | Adam <adamdharrison@gmail.com> | 2022-09-10 16:40:19 -0400 |
---|---|---|
committer | Adam <adamdharrison@gmail.com> | 2022-09-10 16:40:19 -0400 |
commit | e374d9075bca80f9ec89828df4ab2d75daeb6910 (patch) | |
tree | a9381c04e2ed90a02b542e790e5a7bc4c570d34d /lpm.c | |
parent | 38eabf89e5d1ed3ed7c5db399ee882e300c69205 (diff) | |
download | lite-xl-plugin-manager-e374d9075bca80f9ec89828df4ab2d75daeb6910.tar.gz lite-xl-plugin-manager-e374d9075bca80f9ec89828df4ab2d75daeb6910.zip |
Fixed most commands.
Diffstat (limited to 'lpm.c')
-rw-r--r-- | lpm.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -383,8 +383,8 @@ int main(int argc, char* argv[]) { lua_pushliteral(L, "/"); #endif lua_setglobal(L, "PATHSEP"); - //if (luaL_loadstring(L, luafile)) { - if (luaL_loadfile(L, "lpm.lua")) { + if (luaL_loadstring(L, luafile)) { + //if (luaL_loadfile(L, "lpm.lua")) { fprintf(stderr, "internal error when starting the application: %s\n", lua_tostring(L, -1)); return -1; } |