From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 32334 invoked by alias); 19 Jan 2010 10:32:37 -0000 Received: (qmail 32323 invoked by uid 22791); 19 Jan 2010 10:32:36 -0000 X-SWARE-Spam-Status: No, hits=-2.4 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from rock.gnat.com (HELO rock.gnat.com) (205.232.38.15) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 19 Jan 2010 10:32:32 +0000 Received: from localhost (localhost.localdomain [127.0.0.1]) by filtered-rock.gnat.com (Postfix) with ESMTP id AFBBD2BAB5E; Tue, 19 Jan 2010 05:32:30 -0500 (EST) Received: from rock.gnat.com ([127.0.0.1]) by localhost (rock.gnat.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id sWkbQpvPbO+z; Tue, 19 Jan 2010 05:32:30 -0500 (EST) Received: from joel.gnat.com (localhost.localdomain [127.0.0.1]) by rock.gnat.com (Postfix) with ESMTP id DA4CC2BAB53; Tue, 19 Jan 2010 05:32:29 -0500 (EST) Received: by joel.gnat.com (Postfix, from userid 1000) id 44670F5980; Tue, 19 Jan 2010 14:32:22 +0400 (RET) Date: Tue, 19 Jan 2010 10:32:00 -0000 From: Joel Brobecker To: Eli Zaretskii Cc: tromey@redhat.com, bauerman@br.ibm.com, drow@false.org, pedro@codesourcery.com, gdb-patches@sourceware.org Subject: Re: RFC: add ability to "source" Python code Message-ID: <20100119103222.GS17397@adacore.com> References: <20090217000746.GA3812@adacore.com> <20090219200536.GA25486@adacore.com> <1243828612.9045.9.camel@hactar> <20100115072054.GA4191@adacore.com> <20100115091250.GC2786@adacore.com> <20100118063303.GI17397@adacore.com> <83wrzf719v.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="da4uJneut+ArUgXk" Content-Disposition: inline In-Reply-To: <83wrzf719v.fsf@gnu.org> User-Agent: Mutt/1.5.20 (2009-06-14) 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: 2010-01/txt/msg00474.txt.bz2 --da4uJneut+ArUgXk Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 633 > > gdb/doc/ChangeLog: > > > > Tom Tromey > > * gdb.texinfo (File Options): Document -x on .py files. > > (Command Files): Document handling of Python scripts. > > Okay for this part, except that: Ooops, sorry - I was confused as to the status of the documentation. Somehow, I managed to understand that your approval of the change included the approval of the documentation update. I apologize. I checked in this patch, to fix the issue you spotted. 2010-01-19 Joel Brobecker * gdb.texinfo (Command Files): Fix typo. -- Joel --da4uJneut+ArUgXk Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="gdb.texinfo.diff" Content-length: 745 Index: gdb.texinfo =================================================================== RCS file: /cvs/src/src/gdb/doc/gdb.texinfo,v retrieving revision 1.660 diff -u -p -r1.660 gdb.texinfo --- gdb.texinfo 18 Jan 2010 06:28:47 -0000 1.660 +++ gdb.texinfo 19 Jan 2010 10:27:39 -0000 @@ -19164,7 +19164,7 @@ each command as it is executed. The opt If @var{filename} ends in @samp{.py}, then @value{GDBN} evaluates the contents of the file as Python code. If Python support is not compiled -in to @value{GDBN}, then the file is assumed to contain @value{GDBN} +into @value{GDBN}, then the file is assumed to contain @value{GDBN} commands, regardless of its extension. Commands that would ask for confirmation if used interactively proceed --da4uJneut+ArUgXk--