From 27fac8ff4c078b950b250ee2fbd7e5a0c3eed663 Mon Sep 17 00:00:00 2001 From: Kyle Evans Date: Fri, 16 Feb 2018 04:10:10 +0000 Subject: [PATCH] stand/lua: Consistently use semicolons for line endings --- stand/lua/core.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stand/lua/core.lua b/stand/lua/core.lua index ccb364a74d6..7886be738ee 100644 --- a/stand/lua/core.lua +++ b/stand/lua/core.lua @@ -29,8 +29,8 @@ local core = {}; -- Commonly appearing constants -core.KEY_ENTER = 13 -core.KEY_BACKSPACE = 127 +core.KEY_ENTER = 13; +core.KEY_BACKSPACE = 127; function core.setVerbose(b) if (b == nil) then @@ -169,5 +169,5 @@ function core.bootserial() return false; end -core.acpi = core.getACPIPresent(false) +core.acpi = core.getACPIPresent(false); return core