From owner-svn-src-head@freebsd.org Tue Feb 20 05:21:58 2018 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CF1FBF03786; Tue, 20 Feb 2018 05:21:58 +0000 (UTC) (envelope-from kevans@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7CF7F83388; Tue, 20 Feb 2018 05:21:58 +0000 (UTC) (envelope-from kevans@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 77FEE25030; Tue, 20 Feb 2018 05:21:58 +0000 (UTC) (envelope-from kevans@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w1K5LwuB092171; Tue, 20 Feb 2018 05:21:58 GMT (envelope-from kevans@FreeBSD.org) Received: (from kevans@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w1K5Lw5A092170; Tue, 20 Feb 2018 05:21:58 GMT (envelope-from kevans@FreeBSD.org) Message-Id: <201802200521.w1K5Lw5A092170@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kevans set sender to kevans@FreeBSD.org using -f From: Kyle Evans Date: Tue, 20 Feb 2018 05:21:58 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r329632 - head/share/man/man9 X-SVN-Group: head X-SVN-Commit-Author: kevans X-SVN-Commit-Paths: head/share/man/man9 X-SVN-Commit-Revision: 329632 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Feb 2018 05:21:59 -0000 Author: kevans Date: Tue Feb 20 05:21:58 2018 New Revision: 329632 URL: https://svnweb.freebsd.org/changeset/base/329632 Log: style.lua(9): Clarify local variable guideline The intent of this guideline is to avoid creating global variables in module scope. Its main purpose is to serve as a reminder that variables at module scope also need to be declared. We want to avoid global variables in general, but this is easier to mess up when designing things in the module scope. Modified: head/share/man/man9/style.lua.9 Modified: head/share/man/man9/style.lua.9 ============================================================================== --- head/share/man/man9/style.lua.9 Tue Feb 20 05:12:39 2018 (r329631) +++ head/share/man/man9/style.lua.9 Tue Feb 20 05:21:58 2018 (r329632) @@ -25,7 +25,7 @@ .\" .\" $FreeBSD$ .\" -.Dd February 19, 2018 +.Dd February 20, 2018 .Dt STYLE.LUA 9 .Os .Sh NAME @@ -86,7 +86,7 @@ should be done explicitly, rather than as a boolean ex Single-line conditional statements and loops should be avoided. .Pp .Ic local -variables should be preferred to module scope variables. +variables should be preferred to global variables in module scope. .Pp Multiple local variables should not be declared .Sy and