From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 994 invoked by alias); 17 Apr 2007 18:03:32 -0000 Received: (qmail 974 invoked by uid 22791); 17 Apr 2007 18:03:29 -0000 X-Spam-Check-By: sourceware.org Received: from return.false.org (HELO return.false.org) (66.207.162.98) by sourceware.org (qpsmtpd/0.31) with ESMTP; Tue, 17 Apr 2007 19:03:16 +0100 Received: from return.false.org (localhost [127.0.0.1]) by return.false.org (Postfix) with ESMTP id F20254B26D; Tue, 17 Apr 2007 13:03:14 -0500 (CDT) Received: from caradoc.them.org (dsl093-172-095.pit1.dsl.speakeasy.net [66.93.172.95]) by return.false.org (Postfix) with ESMTP id 757FB4B262; Tue, 17 Apr 2007 13:03:14 -0500 (CDT) Received: from drow by caradoc.them.org with local (Exim 4.63) (envelope-from ) id 1Hds1J-0002S3-KZ; Tue, 17 Apr 2007 14:03:13 -0400 Date: Tue, 17 Apr 2007 18:13:00 -0000 From: Daniel Jacobowitz To: "Maciej W. Rozycki" Cc: gdb-patches@sourceware.org, "Maciej W. Rozycki" Subject: Re: mips-tdep.c: Style fixes Message-ID: <20070417180313.GA9378@caradoc.them.org> Mail-Followup-To: "Maciej W. Rozycki" , gdb-patches@sourceware.org, "Maciej W. Rozycki" References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.15 (2007-04-09) X-IsSubscribed: yes 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 X-SW-Source: 2007-04/txt/msg00265.txt.bz2 On Tue, Apr 17, 2007 at 06:57:09PM +0100, Maciej W. Rozycki wrote: > - int partial_len = (len < mips_abi_regsize (gdbarch) > - ? len : mips_abi_regsize (gdbarch)); > + int partial_len = (len < mips_abi_regsize (gdbarch)) > + ? len : mips_abi_regsize (gdbarch); These (and most of the others) were actually there for a reason. Emacs will move that second line leftwards if there isn't an outer layer of parentheses; I believe GNU Indent and gdb_indent.sh will also. -- Daniel Jacobowitz CodeSourcery