From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 119739 invoked by alias); 18 Jan 2019 21:50:40 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 119698 invoked by uid 89); 18 Jan 2019 21:50:40 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=BAYES_00,SPF_HELO_PASS autolearn=ham version=3.3.2 spammy=HTo:U*pault, HTo:U*tkoenig X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 18 Jan 2019 21:50:39 +0000 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 91515107AB; Fri, 18 Jan 2019 21:50:37 +0000 (UTC) Received: from tucnak.zalov.cz (ovpn-116-69.ams2.redhat.com [10.36.116.69]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 0E99F61D11; Fri, 18 Jan 2019 21:50:36 +0000 (UTC) Received: from tucnak.zalov.cz (localhost [127.0.0.1]) by tucnak.zalov.cz (8.15.2/8.15.2) with ESMTP id x0ILoYNd023747; Fri, 18 Jan 2019 22:50:35 +0100 Received: (from jakub@localhost) by tucnak.zalov.cz (8.15.2/8.15.2/Submit) id x0ILoWPD020377; Fri, 18 Jan 2019 22:50:32 +0100 Date: Fri, 18 Jan 2019 21:50:00 -0000 From: Jakub Jelinek To: Thomas Koenig , Paul Thomas Cc: "fortran@gcc.gnu.org" , gcc-patches Subject: ChangeLog formatting nits Message-ID: <20190118215032.GT30353@tucnak> Reply-To: Jakub Jelinek References: <61631d6c-bf99-b4c9-227d-45a254a2d007@netcologne.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <61631d6c-bf99-b4c9-227d-45a254a2d007@netcologne.de> User-Agent: Mutt/1.10.1 (2018-07-13) X-IsSubscribed: yes X-SW-Source: 2019-01/txt/msg01103.txt.bz2 Hi! On Thu, Jan 17, 2019 at 07:30:34AM +0100, Thomas Koenig wrote: > 2019-01-17 Thomas Koenig > > PR fortran/88871 > * resolve.c (resolve_ref): Fix logic for removal of > reference. Just a few ChangeLog formatting nits of what I've seen recently from multiple people, there should be exactly one space after ):, not two, and there should be no space between ) and :, or, if there is just filename, between filename and :, so * filename.whatever : New test. is not correct and it should be * filename.whatever: New test. Similarly: * filename.whatever : External declarations for foo and blah. etc. should be * filename.whatever (foo, blah): Declare. or similar. Thanks. Jakub