From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8747 invoked by alias); 20 Nov 2014 14:58:01 -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 8695 invoked by uid 89); 20 Nov 2014 14:58:00 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=0.4 required=5.0 tests=AWL,BAYES_00,NO_DNS_FOR_FROM,SPAM_SUBJECT1,T_RP_MATCHES_RCVD autolearn=no version=3.3.2 X-HELO: mailuogwhop.emc.com Received: from mailuogwhop.emc.com (HELO mailuogwhop.emc.com) (168.159.213.141) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA encrypted) ESMTPS; Thu, 20 Nov 2014 14:57:59 +0000 Received: from maildlpprd01.lss.emc.com (maildlpprd01.lss.emc.com [10.253.24.33]) by mailuogwprd01.lss.emc.com (Sentrion-MTA-4.3.1/Sentrion-MTA-4.3.0) with ESMTP id sAKEvs1v028029 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 20 Nov 2014 09:57:55 -0500 X-DKIM: OpenDKIM Filter v2.4.3 mailuogwprd01.lss.emc.com sAKEvs1v028029 X-DKIM: OpenDKIM Filter v2.4.3 mailuogwprd01.lss.emc.com sAKEvs1v028029 Received: from mailsyshubprd05.lss.emc.com (mailsyshubprd05.lss.emc.com [10.253.24.23]) by maildlpprd01.lss.emc.com (RSA Interceptor); Thu, 20 Nov 2014 09:57:18 -0500 Received: from usendtaylorx2l.lss.emc.com (usendtaylorx2l.lss.emc.com [10.243.10.188]) by mailsyshubprd05.lss.emc.com (Sentrion-MTA-4.3.1/Sentrion-MTA-4.3.0) with ESMTP id sAKEvjQj009897; Thu, 20 Nov 2014 09:57:45 -0500 Received: by usendtaylorx2l.lss.emc.com (Postfix, from userid 26043) id AA14D5D848E; Thu, 20 Nov 2014 09:57:44 -0500 (EST) Received: from usendtaylorx2l (localhost [127.0.0.1]) by usendtaylorx2l.lss.emc.com (Postfix) with ESMTP id A89345D847C; Thu, 20 Nov 2014 09:57:44 -0500 (EST) To: Doug Evans Cc: gdb-patches@sourceware.org, eliz@gnu.org Subject: Re: Fwd: Delivery Status Notification (Failure) In-reply-to: References: <001a1132e59ca4575e0508413955@google.com> Comments: In-reply-to Doug Evans message dated "Wed, 19 Nov 2014 21:40:48 -0500." Date: Thu, 20 Nov 2014 14:58:00 -0000 Message-ID: <12971.1416495464@usendtaylorx2l> From: David Taylor X-RSA-Classifications: DLM_1, public X-Sentrion-Hostname: mailuogwprd01.lss.emc.com X-SW-Source: 2014-11/txt/msg00474.txt.bz2 Doug Evans wrote: > Hi. > This didn't go through for some strange reason. > I'm hoping this does. Bizarre. > Delivery to the following recipient failed permanently: > > dtaylor@usendtaylorx2l.lss.emc.com > > Technical details of permanent failure: > DNS Error: Address resolution of usendtaylorx2l.lss.emc.com. failed: > Domain name not found Groan. IT must have changed something. usendtaylorx2l is my desktop. Outgoing mail should show an address of either dtaylor@emc.com or david.taylor@emc.com. > Subject: Re: RFA info macro [-at LOCATION,] (v2) > From: Doug Evans > > On Wed, Nov 19, 2014 at 1:00 PM, David Taylor > wrote: > > The following patch adds the option [-at LOCATION,] to 'info macro' to > > enable the use of a user selected location as a documented feature. > > Hi. Hello. > The "," in "-at LOCATION," seems a bit random, relative to other commands. > > Maybe it is the best way to go. > If so, I'd like to see the reasons why it exists documented in the code. > > Can we just remove the , and require -- when necessary? It marks the end of the location and the start of the macro. It is patterned after maint agent [-at location,] EXPRESSION and maint agent-eval [-at location,] EXPRESSION I did it the same way for consistency. It seems unnecessary, but the location parsing code stops at comma but not at space. Presumably that is so that file names can contain spaces. But, that is just a guess on my part. I personally dislike file names containing spaces. David