From patchwork Sat Aug 12 16:49:43 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sergio Durigan Junior X-Patchwork-Id: 22117 Received: (qmail 67144 invoked by alias); 12 Aug 2017 16:50:00 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 67093 invoked by uid 89); 12 Aug 2017 16:49:54 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-26.9 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RP_MATCHES_RCVD, SPF_HELO_PASS autolearn=ham version=3.3.2 spammy=Hx-languages-length:1566 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 12 Aug 2017 16:49:52 +0000 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 3849B37EEC for ; Sat, 12 Aug 2017 16:49:50 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 3849B37EEC Authentication-Results: ext-mx05.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx05.extmail.prod.ext.phx2.redhat.com; spf=fail smtp.mailfrom=sergiodj@redhat.com Received: from psique.yyz.redhat.com (unused-10-15-17-193.yyz.redhat.com [10.15.17.193]) by smtp.corp.redhat.com (Postfix) with ESMTP id F277665D35; Sat, 12 Aug 2017 16:49:47 +0000 (UTC) From: Sergio Durigan Junior To: GDB Patches Cc: Sergio Durigan Junior Subject: [commit/obvious] Fix typo on documentation ("show set startup-with-shell") Date: Sat, 12 Aug 2017 12:49:43 -0400 Message-Id: <20170812164943.16369-1-sergiodj@redhat.com> X-IsSubscribed: yes The documentation was erroneously saying that there is a command named "show set startup-with-shell", while the correct version is "show startup-with-shell". This commit fixes obvious mistake. gdb/doc/ChangeLog: 2017-08-12 Sergio Durigan Junior PR gdb/21925 * gdb.texinfo (Starting) : Fix typo ("show set..."). --- gdb/doc/ChangeLog | 6 ++++++ gdb/doc/gdb.texinfo | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index eb6a73fc01..4b406985ab 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,9 @@ +2017-08-12 Sergio Durigan Junior + + PR gdb/21925 + * gdb.texinfo (Starting) : Fix typo ("show + set..."). + 2017-08-09 Simon Marchi * gdb.texinfo (Packets): Fix Z0 cmd_list doc referring to diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index d098eba1e8..7528183506 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -2157,7 +2157,7 @@ This command is available when debugging locally on most targets, excluding @item set startup-with-shell @itemx set startup-with-shell on @itemx set startup-with-shell off -@itemx show set startup-with-shell +@itemx show startup-with-shell On Unix systems, by default, if a shell is available on your target, @value{GDBN}) uses it to start your program. Arguments of the @code{run} command are passed to the shell, which does variable