stand/lua: Consistently use semicolons for line endings

This commit is contained in:
Kyle Evans 2018-02-16 04:10:10 +00:00
parent 6401094f62
commit 27fac8ff4c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=329352

View File

@ -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