summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThijs <thijs@thijsschreijer.nl>2024-05-22 23:57:00 +0200
committerThijs <thijs@thijsschreijer.nl>2024-05-22 23:57:00 +0200
commite1a8aede05d3217882cf2de426f0a87a659e4308 (patch)
treea2793677c06c450a7fcd48c81c9031eea28fb5fd
parentc08ea611759407b0e0c8dbea384c4f5273d27d3f (diff)
downloadluasystem-e1a8aede05d3217882cf2de426f0a87a659e4308.zip
fix windows (manual) tests
-rw-r--r--spec/04-term_spec.lua2
-rw-r--r--src/term.c23
2 files changed, 11 insertions, 14 deletions
diff --git a/spec/04-term_spec.lua b/spec/04-term_spec.lua
index c649579..3dc4660 100644
--- a/spec/04-term_spec.lua
+++ b/spec/04-term_spec.lua
@@ -8,7 +8,7 @@ describe("Terminal:", function()
setup(function()
wincodepage = system.getconsoleoutputcp()
- assert(system.setconsoleoutputcp(65001))
+ assert(system.setconsoleoutputcp(65001)) -- set to UTF8
end)
teardown(function()
diff --git a/src/term.c b/src/term.c
index 704da80..2b44b12 100644
--- a/src/term.c
+++ b/src/term.c
@@ -361,26 +361,17 @@ static int lst_setconsoleflags(lua_State *L)
}
LSBF_BITFLAG new_console_mode = lsbf_checkbitflags(L, 2);
- DWORD prev_console_mode;
- if (GetConsoleMode(console_handle, &prev_console_mode) == 0)
- {
- termFormatError(L, GetLastError(), "failed to get console mode");
- return 2;
- }
-
- int success = SetConsoleMode(console_handle, new_console_mode) != 0;
- if (!success)
- {
+ if (!SetConsoleMode(console_handle, new_console_mode)) {
termFormatError(L, GetLastError(), "failed to set console mode");
return 2;
}
#else
get_console_handle(L); // to validate args
- lua_pushboolean(L, 1); // always return true on Posix
- return 1;
-
#endif
+
+ lua_pushboolean(L, 1);
+ return 1;
}
@@ -657,6 +648,9 @@ static int lst_setnonblock(lua_State *L)
}
#else
+ if (lua_gettop(L) > 1) {
+ lua_settop(L, 1); // use one argument, because the second boolean will fail as get_console_flags expects bitflags
+ }
HANDLE console_handle = get_console_handle(L, 1);
if (console_handle == NULL) {
return 2; // error message is already on the stack
@@ -697,6 +691,9 @@ static int lst_getnonblock(lua_State *L)
}
#else
+ if (lua_gettop(L) > 1) {
+ lua_settop(L, 1); // use one argument, because the second boolean will fail as get_console_flags expects bitflags
+ }
HANDLE console_handle = get_console_handle(L, 1);
if (console_handle == NULL) {
return 2; // error message is already on the stack