From patchwork Fri Sep 25 22:44:00 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Doug Evans X-Patchwork-Id: 8860 Received: (qmail 119034 invoked by alias); 25 Sep 2015 22:44:05 -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 119018 invoked by uid 89); 25 Sep 2015 22:44:04 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=AWL, BAYES_00, RCVD_IN_DNSWL_LOW, RP_MATCHES_RCVD, SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-pa0-f74.google.com Received: from mail-pa0-f74.google.com (HELO mail-pa0-f74.google.com) (209.85.220.74) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Fri, 25 Sep 2015 22:44:03 +0000 Received: by pacii12 with SMTP id ii12so8606351pac.1 for ; Fri, 25 Sep 2015 15:44:00 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:message-id:date:subject:from:to :content-type; bh=+xwZFP0zEDFkf0alVPRXAM9QjM4t1pjpP5HStvUi5eg=; b=meO50KwNO8SJbJCGYhUEAaA35MYI0CdutPvTjxw9pWcaBZ85YTUtdWb9i5FLwJ3/xS h5HF6o/HEBRDBaJ17VKHVyKB+jg+smSGGsweGac993qeR94eLWRuW7p/HNyfW4S6jw6M q1jllsK/ez8CZV/pkYBCK1axMyvXIQ2qvoChArMVqpd61fn6KKU6QLgQ1LWqrxut5cyD 7M1THe+kG50mkqKf4L8YGYZ3i0u8JtFCazdccpRwAkGel2vsdYBR8iWj4Eqsm8CAZIfN L31KgPGM98XzTD0qMB0XWXyxTyBVN+wWFA85r+EP9BTmqva3on7HZ3ufTQ54JN48Pzxp hrqw== X-Gm-Message-State: ALoCoQkAvsdTP7fqPi5lfhkvRU3iQz1VHd3zIBE4vzhNTaCKxENKSbVQkVnsgFGAh4IQhoVtMhqiXpUr6FHEg9na09BelfZTWNVBchge6Aydf1P1ESDbEK0tTbapfUxP4gdbhne8G17ruZyXNBDrFy/IZ/6zyeFdvkNreYTEBg2oBU8YxfWsLZY= MIME-Version: 1.0 X-Received: by 10.66.63.39 with SMTP id d7mr7072312pas.20.1443221040387; Fri, 25 Sep 2015 15:44:00 -0700 (PDT) Message-ID: <001a1136afea722b4805209a1576@google.com> Date: Fri, 25 Sep 2015 22:44:00 +0000 Subject: [OB PATCH] Fix typo in syntax of record instruction-history begin, end. From: Doug Evans To: gdb-patches@sourceware.org X-IsSubscribed: yes Hi. Committed as obvious. [noticed because I'm using record btrace to debug something] 2015-09-25 Doug Evans * gdb.texinfo (Process Record and Replay): Fix syntax of "record instruction-history begin, end" and "record function-call-history begin, end". number @var{end} is included. @@ -6837,7 +6837,7 @@ Prints ten more functions after the last ten-line print. @item record function-call-history - Prints ten more functions before the last ten-line print. -@item record function-call-history @var{begin} @var{end} +@item record function-call-history @var{begin}, @var{end} Prints functions beginning with function number @var{begin} until function number @var{end}. The function number @var{end} is included. @end table diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index 57e47b8..f298172 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -6765,7 +6765,7 @@ Disassembles ten more instructions after the last disassembly. @item record instruction-history - Disassembles ten more instructions before the last disassembly. -@item record instruction-history @var{begin} @var{end} +@item record instruction-history @var{begin}, @var{end} Disassembles instructions beginning with instruction number @var{begin} until instruction number @var{end}. The instruction