From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 32388 invoked by alias); 19 Aug 2004 21:32:31 -0000 Mailing-List: contact gcc-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-owner@gcc.gnu.org Received: (qmail 32380 invoked from network); 19 Aug 2004 21:32:30 -0000 Received: from unknown (HELO e4.ny.us.ibm.com) (32.97.182.104) by sourceware.org with SMTP; 19 Aug 2004 21:32:30 -0000 Received: from northrelay04.pok.ibm.com (northrelay04.pok.ibm.com [9.56.224.206]) by e4.ny.us.ibm.com (8.12.10/8.12.9) with ESMTP id i7JLWPvL764212; Thu, 19 Aug 2004 17:32:25 -0400 Received: from dyn318378bld.beaverton.ibm.com (d01av02.pok.ibm.com [9.56.224.216]) by northrelay04.pok.ibm.com (8.12.10/NCO/VER6.6) with ESMTP id i7JLXVPW146252; Thu, 19 Aug 2004 17:33:32 -0400 Received: from dyn318378bld.beaverton.ibm.com (localhost.localdomain [127.0.0.1]) by dyn318378bld.beaverton.ibm.com (8.12.8/8.12.8) with ESMTP id i7JLWLAA007181; Thu, 19 Aug 2004 14:32:22 -0700 Received: (from janis@localhost) by dyn318378bld.beaverton.ibm.com (8.12.8/8.12.8/Submit) id i7JLWKA9007179; Thu, 19 Aug 2004 14:32:20 -0700 X-Authentication-Warning: dyn318378bld.beaverton.ibm.com: janis set sender to janis187@us.ibm.com using -f Date: Thu, 19 Aug 2004 21:53:00 -0000 From: Janis Johnson To: Kai Henningsen Cc: gcc@gcc.gnu.org Subject: Re: warn/croak on "string" "string" auto-joins Message-ID: <20040819213220.GA7136@us.ibm.com> References: <9ebd65110408171032227968ea@mail.gmail.com> <874qn14pvc.fsf@codesourcery.com> <874qn14pvc.fsf@codesourcery.com> <41228E08.2010008@gnat.com> <9FA4X$yHw-B@khms.westfalen.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <9FA4X$yHw-B@khms.westfalen.de> User-Agent: Mutt/1.4.1i X-SW-Source: 2004-08/txt/msg00971.txt.bz2 On Thu, Aug 19, 2004 at 07:20:00PM +0200, Kai Henningsen wrote: > Without intervening line feed is pretty much the *only* way I use > automatic concatenation. I can't immediately think of a single good reason > to use it *with* intervening line feed ... GCC itself is full of things like fprintf (STREAM, ", " HOST_WIDE_INT_PRINT_DEC "\n", size_); where HOST_WIDE_INT_PRINT_DEC is a string literal. Janis