From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 87983 invoked by alias); 13 Dec 2019 15:14:46 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 87965 invoked by uid 89); 13 Dec 2019 15:14:46 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-6.1 required=5.0 tests=AWL,BAYES_00,SPF_HELO_PASS,SPF_PASS autolearn=ham version=3.3.1 spammy=our X-HELO: smtp.polymtl.ca Received: from smtp.polymtl.ca (HELO smtp.polymtl.ca) (132.207.4.11) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 13 Dec 2019 15:14:45 +0000 Received: from simark.ca (simark.ca [158.69.221.121]) (authenticated bits=0) by smtp.polymtl.ca (8.14.7/8.14.7) with ESMTP id xBDFEagS009705 (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Fri, 13 Dec 2019 10:14:41 -0500 DKIM-Filter: OpenDKIM Filter v2.11.0 smtp.polymtl.ca xBDFEagS009705 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=polymtl.ca; s=default; t=1576250082; bh=XujOzKyoywT9oPjopUSO53FHgzj1jlN1DfRMSFU5C/w=; h=Subject:To:Cc:References:From:Date:In-Reply-To:From; b=Fn1KrDLd3U8/qBwky1XzHXF41Pb/XGKAysf/Troer4cIPWR+4Noj0Q0qujsF0YdZe DNIwnfeRuDBnxB/5h37SfdB0qNRSKKAx3lzLJRdtFmWyiKoXr3GSQ6SnepGq2w3uep pd/uh4sIxJotxNyv9ymQou7HEs2+rblADru3/Hmc= Received: from [172.16.0.95] (192-222-181-218.qc.cable.ebox.net [192.222.181.218]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by simark.ca (Postfix) with ESMTPSA id 9B2BD1E573; Fri, 13 Dec 2019 10:14:35 -0500 (EST) Subject: Re: [PATCH 2/2] Fix indentation in jit.c To: Pedro Alves , Tom Tromey Cc: gdb-patches@sourceware.org References: <20191211063732.1043487-1-simon.marchi@polymtl.ca> <20191211063732.1043487-2-simon.marchi@polymtl.ca> <8736dp5pwq.fsf@tromey.com> <97717c0b-cf17-228d-f248-4c8eb0705130@redhat.com> From: Simon Marchi Message-ID: Date: Fri, 13 Dec 2019 15:14:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.2.2 MIME-Version: 1.0 In-Reply-To: <97717c0b-cf17-228d-f248-4c8eb0705130@redhat.com> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2019-12/txt/msg00596.txt.bz2 On 2019-12-13 9:43 a.m., Pedro Alves wrote: > On 12/12/19 7:01 PM, Tom Tromey wrote: >>>>>>> "Simon" == Simon Marchi writes: >> >> Simon> Many places in this file use spaces only for indentation. Fix them to >> Simon> conform to GNU style. >> >> Simon> gdb/ChangeLog: >> >> Simon> * jit.c: Fix indentation, replace spaces with tabs where >> Simon> applicable. >> >> Is this really our policy? I thought others (Joel maybe?) had argued >> for no tabs in the past, or that maybe we settled on a "don't care" >> approach. > > I don't recall such policy. AFAIK, we've been sticking to tabs > as per GNU formatting convention. Ok, then I'll push this patch. Simon