From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 30272 invoked by alias); 10 Sep 2013 08:00:36 -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 30259 invoked by uid 89); 10 Sep 2013 08:00:35 -0000 Received: from mga09.intel.com (HELO mga09.intel.com) (134.134.136.24) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 10 Sep 2013 08:00:35 +0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=AWL,BAYES_00,RDNS_NONE,TO_NO_BRKTS_NORDNS autolearn=no version=3.3.2 X-HELO: mga09.intel.com Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga102.jf.intel.com with ESMTP; 10 Sep 2013 00:57:34 -0700 X-ExtLoop1: 1 Received: from irvmail001.ir.intel.com ([163.33.26.43]) by orsmga002.jf.intel.com with ESMTP; 10 Sep 2013 01:00:32 -0700 Received: from ulliclel004.iul.intel.com (ulliclel004.iul.intel.com [172.28.50.125]) by irvmail001.ir.intel.com (8.14.3/8.13.6/MailSET/Hub) with ESMTP id r8A80VX0010923 for ; Tue, 10 Sep 2013 09:00:31 +0100 Received: from ulliclel004.iul.intel.com (ulliclel004.iul.intel.com [127.0.0.1]) by ulliclel004.iul.intel.com (8.13.8/8.12.8/MailSET/client) with ESMTP id r8A80VJ4024961 for ; Tue, 10 Sep 2013 10:00:31 +0200 Received: (from sagovic@localhost) by ulliclel004.iul.intel.com (8.13.8/8.13.1/Submit) id r8A80PpX024960 for gdb-patches@sourceware.org; Tue, 10 Sep 2013 10:00:25 +0200 From: Sanimir Agovic To: gdb-patches@sourceware.org Subject: [PATCH] doc,mi: example refers to -list-features instead of -list-target-features Date: Tue, 10 Sep 2013 08:00:00 -0000 Message-Id: <1378800025-24905-1-git-send-email-sanimir.agovic@intel.com> X-IsSubscribed: yes X-SW-Source: 2013-09/txt/msg00323.txt.bz2 Hello, patch fixes mi documentation about -list-target-features, example now refers to the correct mi command: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ The -list-target-features Command [...] Example output: (gdb) -list-target-features ^done,result=["async"] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2013-09-10 Sanimir Agovic doc/ * gdb.texinfo: Use -list-target-features in the example. -Sanimir --- gdb/doc/gdb.texinfo | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index 21250fe..d8460cf 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -34562,7 +34562,7 @@ may change, and the frontend should obtain it again. Example output: @smallexample -(gdb) -list-features +(gdb) -list-target-features ^done,result=["async"] @end smallexample -- 1.7.1.1