svn commit: r329352 - head/stand/lua

Kyle Evans kevans at FreeBSD.org
Fri Feb 16 04:10:12 UTC 2018


Author: kevans
Date: Fri Feb 16 04:10:10 2018
New Revision: 329352
URL: https://svnweb.freebsd.org/changeset/base/329352

Log:
  stand/lua: Consistently use semicolons for line endings

Modified:
  head/stand/lua/core.lua

Modified: head/stand/lua/core.lua
==============================================================================
--- head/stand/lua/core.lua	Fri Feb 16 04:03:15 2018	(r329351)
+++ head/stand/lua/core.lua	Fri Feb 16 04:10:10 2018	(r329352)
@@ -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


More information about the svn-src-head mailing list