From patchwork Mon Sep 17 22:23:34 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Philippe Waroquiers X-Patchwork-Id: 29431 Received: (qmail 84593 invoked by alias); 17 Sep 2018 22:23:47 -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 84561 invoked by uid 89); 17 Sep 2018 22:23:46 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-25.1 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=ham version=3.3.2 spammy= X-HELO: mailsec101.isp.belgacom.be Received: from mailsec101.isp.belgacom.be (HELO mailsec101.isp.belgacom.be) (195.238.20.97) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 17 Sep 2018 22:23:43 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=skynet.be; i=@skynet.be; q=dns/txt; s=securemail; t=1537223023; x=1568759023; h=from:to:cc:subject:date:message-id; bh=EcvRC0xooRtFbjn5RHRksKaCSQn00vTToOr5p39WGW4=; b=E4IK3Ocyf8GL7NQ9ZoGf10Y/SwfQ/FW9r3AbAEneR4JczaCpD/LSGS/f p7q3V3qsOtl2Mwmf6R62lHoPOkD0eQ==; Received: from 65.33-242-81.adsl-dyn.isp.belgacom.be (HELO md.home) ([81.242.33.65]) by relay.skynet.be with ESMTP/TLS/DHE-RSA-AES128-GCM-SHA256; 18 Sep 2018 00:23:40 +0200 From: Philippe Waroquiers To: gdb-patches@sourceware.org Cc: Philippe Waroquiers Subject: [PATCH] [OBVIOUS] enable frame-filter short help uses disable instead of enable Date: Tue, 18 Sep 2018 00:23:34 +0200 Message-Id: <20180917222334.27753-1-philippe.waroquiers@skynet.be> X-IsSubscribed: yes Without the patch: (gdb) apropos able frame-filter disable frame-filter -- GDB command to disable the specified frame-filter enable frame-filter -- GDB command to disable the specified frame-filter With the patch: (gdb) apropos able frame-filter disable frame-filter -- GDB command to disable the specified frame-filter enable frame-filter -- GDB command to enable the specified frame-filter Pushed as obvious --- gdb/python/lib/gdb/command/frame_filters.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gdb/python/lib/gdb/command/frame_filters.py b/gdb/python/lib/gdb/command/frame_filters.py index 3afe5e9ac1..16a40ed98e 100644 --- a/gdb/python/lib/gdb/command/frame_filters.py +++ b/gdb/python/lib/gdb/command/frame_filters.py @@ -207,7 +207,7 @@ def _complete_frame_filter_name(word, printer_dict): return flist class EnableFrameFilter(gdb.Command): - """GDB command to disable the specified frame-filter. + """GDB command to enable the specified frame-filter. Usage: enable frame-filter enable DICTIONARY [NAME]