From owner-svn-src-all@freebsd.org Tue Jun 16 17:11:39 2020 Return-Path: Delivered-To: svn-src-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 7A2C53448CC; Tue, 16 Jun 2020 17:11:39 +0000 (UTC) (envelope-from carpeddiem@gmail.com) Received: from mail-io1-f47.google.com (mail-io1-f47.google.com [209.85.166.47]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "smtp.gmail.com", Issuer "GTS CA 1O1" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49mZVg1Prnz4PGK; Tue, 16 Jun 2020 17:11:38 +0000 (UTC) (envelope-from carpeddiem@gmail.com) Received: by mail-io1-f47.google.com with SMTP id o5so22747495iow.8; Tue, 16 Jun 2020 10:11:38 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=xJr3bvMCkST8xqH4j0vV2mbfA1hyZhfLMYuQcGKUtuk=; b=SUz3Mxeo53hCwVRO1Sm6XmV6oNn4rfTie0lmMlUmsUIXi4oNiFRvcYzTp4hI6E9HMp 1dbYG+F18vuFgLvscfVUSfNhN1GKOCoNcQ6EkVK2eBljI7i0Gnzzx0dtnpbNUX3k/z2G gEtL3abHHKtEB/POB3YYN9jnhc4Arr5/Lt46ky4VwfJkFQ2D0S/gr9DoohPj2pqn+k/y sA9dHeUBKwTSpWiuMZXgIoW9LHt5dcKxyX8KN46U3GLLWO9eBJii/0XWpFjr2a/YzYtW cPFTDLgi2MB8SzPm56qOCSC85/UcOZXAPpViPtjPYKZIwj5m+S/+UpsvqlhedV3Had8x ayCQ== X-Gm-Message-State: AOAM531PiC0vTjiBaoVz3am4SQbadRiAL/rYWwYBZhDYMTkj/JBaVsJO AkNVR1RdXxTMlmMk0llFa3+R0CRdlM9uedDd8DsgoQ== X-Google-Smtp-Source: ABdhPJyNTdoHueFCekl4mGb/bhd3pcuTcdqnukm9lx4OVvA0JWjXRLMqspA5sx8PeLN3VCRGMChG2eCtZg4MCaw54yo= X-Received: by 2002:a02:a68b:: with SMTP id j11mr20902129jam.128.1592327497474; Tue, 16 Jun 2020 10:11:37 -0700 (PDT) MIME-Version: 1.0 References: <202006160705.05G753T4057972@repo.freebsd.org> <55903c38d363aef2a6f6d0075dd4526b86d51258.camel@freebsd.org> In-Reply-To: <55903c38d363aef2a6f6d0075dd4526b86d51258.camel@freebsd.org> From: Ed Maste Date: Tue, 16 Jun 2020 13:11:24 -0400 Message-ID: Subject: Re: svn commit: r362217 - head/stand/common To: Ian Lepore Cc: Toomas Soome , src-committers , svn-src-all , svn-src-head Content-Type: text/plain; charset="UTF-8" X-Rspamd-Queue-Id: 49mZVg1Prnz4PGK X-Spamd-Bar: ---- Authentication-Results: mx1.freebsd.org; none X-Spamd-Result: default: False [-4.00 / 15.00]; ASN(0.00)[asn:15169, ipnet:209.85.128.0/17, country:US]; REPLY(-4.00)[] X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Jun 2020 17:11:39 -0000 On Tue, 16 Jun 2020 at 13:01, Ian Lepore wrote: > > As much as I prefer doing it this way, style(9) doesn't allow for > variable declarations inside a for() statement (or even inside a local > block, which is just too 1980s for me, but it is still our standard). Perhaps it's time to update style(9) to at least permit these uses, as we've done with the blank line at the beginning of functions with no local variables, and with braces around single-line bodies.