From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1504 invoked by alias); 5 Jun 2008 18:59:37 -0000 Received: (qmail 1495 invoked by uid 22791); 5 Jun 2008 18:59:37 -0000 X-Spam-Check-By: sourceware.org Received: from imr2.ericy.com (HELO imr2.ericy.com) (198.24.6.3) by sourceware.org (qpsmtpd/0.31) with ESMTP; Thu, 05 Jun 2008 18:59:16 +0000 Received: from eusrcmw751.eamcs.ericsson.se (eusrcmw751.exu.ericsson.se [138.85.77.51]) by imr2.ericy.com (8.13.1/8.13.1) with ESMTP id m55IxE5n003811 for ; Thu, 5 Jun 2008 13:59:14 -0500 Received: from ecamlmw720.eamcs.ericsson.se ([142.133.1.72]) by eusrcmw751.eamcs.ericsson.se with Microsoft SMTPSVC(6.0.3790.1830); Thu, 5 Jun 2008 13:59:14 -0500 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Subject: [Patch:Doc] Example for -exec-arguments Date: Thu, 05 Jun 2008 18:59:00 -0000 Message-ID: <6D19CA8D71C89C43A057926FE0D4ADAA04291182@ecamlmw720.eamcs.ericsson.se> From: "Marc Khouzam" To: 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: 2008-06/txt/msg00054.txt.bz2 Hi, Adding example to the doc for -exec-arguments Ok? Also, the doc mentions -exec-show-arguments, but the actual implementation in GDB is missing. Should this be written in the doc? 2008-06-05 Marc Khouzam * gdb.texinfo (GDB/MI Program Context): Added example to -exec-arguments Index: gdb/doc/gdb.texinfo =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /cvs/src/src/gdb/doc/gdb.texinfo,v retrieving revision 1.499 diff -u -r1.499 gdb.texinfo --- gdb/doc/gdb.texinfo 4 Jun 2008 23:24:19 -0000 1.499 +++ gdb/doc/gdb.texinfo 5 Jun 2008 18:54:33 -0000 @@ -19008,8 +19008,12 @@ =20 @subsubheading Example =20 -@c FIXME! -Don't have one around. +@smallexample +(gdb) +-exec-arguments -v word +^done +(gdb) +@end smallexample =20 =20 @subheading The @code{-exec-show-arguments} Command =20 Marc