From patchwork Mon Aug 11 05:32:38 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Doug Evans X-Patchwork-Id: 2357 Received: (qmail 31805 invoked by alias); 11 Aug 2014 05:33:21 -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 31794 invoked by uid 89); 11 Aug 2014 05:33:20 -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, FREEMAIL_ENVFROM_END_DIGIT, FREEMAIL_FROM, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-pd0-f176.google.com Received: from mail-pd0-f176.google.com (HELO mail-pd0-f176.google.com) (209.85.192.176) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Mon, 11 Aug 2014 05:33:19 +0000 Received: by mail-pd0-f176.google.com with SMTP id y10so10144827pdj.21 for ; Sun, 10 Aug 2014 22:33:17 -0700 (PDT) X-Received: by 10.70.42.10 with SMTP id j10mr8451441pdl.1.1407735197592; Sun, 10 Aug 2014 22:33:17 -0700 (PDT) Received: from seba.sebabeach.org.gmail.com (173-13-178-50-sfba.hfc.comcastbusiness.net. [173.13.178.50]) by mx.google.com with ESMTPSA id qw8sm53500259pab.17.2014.08.10.22.33.15 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 10 Aug 2014 22:33:16 -0700 (PDT) From: Doug Evans To: gdb-patches@sourceware.org Subject: [PATCH] Fix typo in program_info Date: Sun, 10 Aug 2014 22:32:38 -0700 Message-ID: MIME-Version: 1.0 X-IsSubscribed: yes Hi. This patch seems obvious, though I'm going to give it a few days in case I missed something. Maybe we should just delete the additional text, but I don't mind it. 2014-08-10 Doug Evans * infcmd.c (program_info): Fix typo. diff --git a/gdb/infcmd.c b/gdb/infcmd.c index bc42cea..2311e6a 100644 --- a/gdb/infcmd.c +++ b/gdb/infcmd.c @@ -1852,7 +1852,7 @@ program_info (char *args, int from_tty) gdb_signal_to_string (tp->suspend.stop_signal)); } - if (!from_tty) + if (from_tty) { printf_filtered (_("Type \"info stack\" or \"info " "registers\" for more information.\n"));