From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 30130 invoked by alias); 19 Jun 2002 14:27:50 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 30069 invoked from network); 19 Jun 2002 14:27:47 -0000 Received: from unknown (HELO mailhub.lss.emc.com) (168.159.1.79) by sources.redhat.com with SMTP; 19 Jun 2002 14:27:47 -0000 Received: from popimap.lss.emc.com (caduseus-ge.lss.emc.com [10.254.140.132]) by mailhub.lss.emc.com (Switch-2.2.0/Switch-2.2.0) with ESMTP id g5JERg212820; Wed, 19 Jun 2002 10:27:43 -0400 (EDT) Received: from emc.com (lul1173.lss.emc.com [168.159.33.173]) by popimap.lss.emc.com (Switch-2.2.0/Switch-2.2.0) with ESMTP id g5JERgS26159; Wed, 19 Jun 2002 10:27:42 -0400 (EDT) Message-ID: <3D109514.8090807@emc.com> Date: Wed, 19 Jun 2002 07:27:00 -0000 From: Josef Ezra User-Agent: Mozilla/5.0 (Windows; U; WinNT4.0; en-US; rv:1.0.0) Gecko/20020530 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Eli Zaretskii CC: gdb-patches@sources.redhat.com Subject: Re: [RFA] new command: 'maintenance info lines' References: Content-Type: multipart/mixed; boundary="------------070101030504010104050204" X-SW-Source: 2002-06/txt/msg00364.txt.bz2 This is a multi-part message in MIME format. --------------070101030504010104050204 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-length: 817 Eli Zaretskii wrote: > On Tue, 18 Jun 2002, josef ezra wrote: > > >>I'm adding this gdb.textinfo entry > > > Thanks. A couple of minor comments: > > >>+This command takes same parameters as @code{disassemble}, but only >>+dumps an 'address:line' pairs. > > > `address' and `line' stand for something else, so they should have the > @var markup: > > ... @code{@var{address}:@var{line}} pairs ... > > >>+ Every pair means: "from this address >>+to the next pair, the code was generated by that line". > > > Please use `` and '' rather than " in Texinfo. The former will look much > better when typeset by TeX in the printed manual (in the Info output, > they are converted to " automatically). > > Other than that, the documentation patch is approved. > thanks. Updated patch attached ... --------------070101030504010104050204 Content-Type: text/plain; name="diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="diff" Content-length: 767 Index: gdb.texinfo =================================================================== RCS file: /cvs/src/src/gdb/doc/gdb.texinfo,v retrieving revision 1.102 diff -u -3 -r1.102 gdb.texinfo --- gdb.texinfo 11 Jun 2002 20:36:57 -0000 1.102 +++ gdb.texinfo 19 Jun 2002 14:10:47 -0000 @@ -4360,6 +4360,13 @@ can set @var{instruction-set} to either @code{intel} or @code{att}. The default is @code{att}, the AT&T flavor used by default by Unix assemblers for x86-based targets. + +@kindex maint info lines +@item maint info lines +This command takes same parameters as @code{disassemble}, but only +dumps an @code{@var{address}:@var{line}} pairs. Every pair means: ``from this +@var{address} forward, the code was generated by that @var{line}''. + @end table --------------070101030504010104050204--