Date: Fri, 16 Feb 2018 04:10:11 +0000 (UTC) From: Kyle Evans <kevans@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r329352 - head/stand/lua Message-ID: <201802160410.w1G4ABRs011993@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201802160410.w1G4ABRs011993>