stand/lua: Re-order locals after copyright notice; require comes first

This commit is contained in:
Kyle Evans 2018-02-19 17:54:22 +00:00
parent 1f5696c7fd
commit c851839897
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=329595
3 changed files with 6 additions and 6 deletions

View File

@ -26,12 +26,12 @@
-- $FreeBSD$
--
local drawer = {};
local color = require("color");
local core = require("core");
local screen = require("screen");
local drawer = {};
drawer.brand_position = {x = 2, y = 1};
drawer.fbsd_logo = {
" ______ ____ _____ _____ ",

View File

@ -27,14 +27,14 @@
--
local menu = {};
local core = require("core");
local color = require("color");
local config = require("config");
local screen = require("screen");
local drawer = require("drawer");
local menu = {};
local OnOff;
local skip;
local run;

View File

@ -26,11 +26,11 @@
-- $FreeBSD$
--
local password = {};
local core = require("core");
local screen = require("screen");
local password = {};
function password.read()
local str = "";
local n = 0;