From patchwork Wed Dec 31 17:50:37 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eli Zaretskii X-Patchwork-Id: 4471 Received: (qmail 20071 invoked by alias); 31 Dec 2014 17:50:51 -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 20061 invoked by uid 89); 31 Dec 2014 17:50:51 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.4 required=5.0 tests=AWL, BAYES_00, RCVD_IN_SEMBACKSCATTER, SPF_SOFTFAIL autolearn=no version=3.3.2 X-HELO: mtaout25.012.net.il Received: from mtaout25.012.net.il (HELO mtaout25.012.net.il) (80.179.55.181) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 31 Dec 2014 17:50:48 +0000 Received: from conversion-daemon.mtaout25.012.net.il by mtaout25.012.net.il (HyperSendmail v2007.08) id <0NHG00L00JT7PL00@mtaout25.012.net.il> for gdb-patches@sourceware.org; Wed, 31 Dec 2014 19:46:40 +0200 (IST) Received: from HOME-C4E4A596F7 ([87.69.4.28]) by mtaout25.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0NHG00FEIK1QN160@mtaout25.012.net.il> for gdb-patches@sourceware.org; Wed, 31 Dec 2014 19:46:40 +0200 (IST) Date: Wed, 31 Dec 2014 19:50:37 +0200 From: Eli Zaretskii Subject: [PATCHSET] [3/4] Fix various issue in TUI To: gdb-patches@sourceware.org Reply-to: Eli Zaretskii Message-id: <83wq57btea.fsf@gnu.org> X-IsSubscribed: yes This patch fixes a couple of problems with documentation of TUI features. OK? 2014-12-31 Eli Zaretskii * gdb/tui/tui-win.c (tui_scroll_left_command, tui_scroll_right_command): Doc fix. * gdb/doc/gdb.texinfo (TUI Commands): Document the possible values of NAME argument to 'winheight' command. Explain the effect of 'tabset' setting better. --- gdb/tui/tui-win.c~0 2014-10-29 21:45:50 +0200 +++ gdb/tui/tui-win.c 2014-12-31 13:55:32 +0200 @@ -403,10 +403,10 @@ Scroll window backward.\n\ Usage: - [win] [n]\n")); add_com ("<", class_tui, tui_scroll_left_command, _("\ -Scroll window forward.\n\ +Scroll window text to the left.\n\ Usage: < [win] [n]\n")); add_com (">", class_tui, tui_scroll_right_command, _("\ -Scroll window backward.\n\ +Scroll window text to the right.\n\ Usage: > [win] [n]\n")); if (xdb_commands) add_com ("w", class_xdb, tui_xdb_set_win_height_command, _("\ --- gdb/doc/gdb.texinfo~0 2014-10-29 21:45:50 +0200 +++ gdb/doc/gdb.texinfo 2014-12-31 16:01:29 +0200 @@ -24384,11 +24384,15 @@ @kindex winheight Change the height of the window @var{name} by @var{count} lines. Positive counts increase the height, while negative counts -decrease it. +decrease it. The @var{name} parameter can be one of @code{src} (the +source window), @code{cmd} (the command window), @code{asm} (the +disassembly window), or @code{regs} (the register display window). @item tabset @var{nchars} @kindex tabset -Set the width of tab stops to be @var{nchars} characters. +Set the width of tab stops to be @var{nchars} characters. This +setting affects the display of TAB characters in the source and +assembly windows. @end table @node TUI Configuration