Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 27 Feb 2018 22:07:41 +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: r330088 - head/stand/lua
Message-ID:  <201802272207.w1RM7f2P044355@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kevans
Date: Tue Feb 27 22:07:41 2018
New Revision: 330088
URL: https://svnweb.freebsd.org/changeset/base/330088

Log:
  lualoader: Correct test sense, comments, and add some more comments

Modified:
  head/stand/lua/config.lua

Modified: head/stand/lua/config.lua
==============================================================================
--- head/stand/lua/config.lua	Tue Feb 27 22:02:39 2018	(r330087)
+++ head/stand/lua/config.lua	Tue Feb 27 22:07:41 2018	(r330088)
@@ -333,6 +333,9 @@ function config.loadmod(mod, silent)
 	return status
 end
 
+-- Returns true if we processed the file successfully, false if we did not.
+-- If 'silent' is true, being unable to read the file is not considered a
+-- failure.
 function config.processFile(name, silent)
 	if silent == nil then
 		silent = false
@@ -340,15 +343,13 @@ function config.processFile(name, silent)
 
 	local text = readFile(name, silent)
 	if text == nil then
-		return not silent
+		return silent
 	end
 
 	return config.parse(text)
 end
 
 -- silent runs will not return false if we fail to open the file
--- check_and_halt, if it's set, will be executed on the full text of the config
--- file. If it returns false, we are to halt immediately.
 function config.parse(text)
 	local n = 1
 	local status = true



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201802272207.w1RM7f2P044355>