svn commit: r329587 - head/stand/lua

Alexander Nasonov alnsn at yandex.ru
Mon Feb 19 22:00:30 UTC 2018


Kyle Evans wrote:
> +		-- Swap the first two menu items on single user boot
> +		if (core.isSingleUserBoot()) then
> +			local multiuser = menu_entries[1];
> +			local singleuser = menu_entries[2];
> +
> +			menu_entries[2] = multiuser;
> +			menu_entries[1] = singleuser;
> +		end

		-- Swap the first two menu items on single user boot
		if core.isSingleUserBoot() then
			menu_entries[1], menu_entries[2] =
			    menu_entries[2], menu_entries[1]
		end

-- 
Alex


More information about the svn-src-head mailing list