From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 49023 invoked by alias); 6 Jul 2015 11:46:04 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 49011 invoked by uid 89); 6 Jul 2015 11:46:03 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.2 required=5.0 tests=AWL,BAYES_50,KAM_LAZY_DOMAIN_SECURITY,RCVD_IN_DNSWL_LOW autolearn=no version=3.3.2 X-HELO: mail-wg0-f52.google.com Received: from mail-wg0-f52.google.com (HELO mail-wg0-f52.google.com) (74.125.82.52) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Mon, 06 Jul 2015 11:46:02 +0000 Received: by wguu7 with SMTP id u7so138010002wgu.3 for ; Mon, 06 Jul 2015 04:45:59 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=q+xl2vAw1Mv6pWv0VjeUqeVQf9zO/NCx/YFqYp3pBHA=; b=ElnwKtmeLxZZkujx0OrES0pzB8Ahsh2eIK6fm9f1nyBz1nWIlzWXeyd2+lkAkcN1BE Qa7q3w5QN5Z+oo5pGVsbrVWLJZECqxBUOk1v8ukcXJH6xDklAeFjsooeADXYYYd5Vv+g IKl3xLPcTOg2EpXZ+dhuQYnHmvAC3BnO2LDvwkb0Rvx6sdlm+MU+GX9NBZReubpPV15k aN03ftwl4S4Ki6WCAo3Vfe3rBh5wGOmdeTFUEOyKl7udOzGwQGkAcj8CTpDJy7TmIWyp EY6Z2En7rFUi0pOf3Jhiin6sUX2zuMtEYB7eaKWtprHpRBv3Z5WkQ/3czZQDQtswdWUR igFg== X-Gm-Message-State: ALoCoQloIBRk/VJWSFMkjulSDxERqy2q4klU3T8XjbwE04/ReJ1voULUCy4qJgIOd9afHht17i0B X-Received: by 10.194.22.105 with SMTP id c9mr49766178wjf.120.1436183159453; Mon, 06 Jul 2015 04:45:59 -0700 (PDT) Received: from localhost (host81-131-205-201.range81-131.btcentralplus.com. [81.131.205.201]) by mx.google.com with ESMTPSA id ny7sm46805154wic.11.2015.07.06.04.45.57 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 06 Jul 2015 04:45:58 -0700 (PDT) From: Andrew Burgess To: gdb-patches@sourceware.org, Eli Zaretskii Cc: Dilyan Palauzov , Andrew Burgess Subject: [PATCH] gdb/doc: Fix incorrect use of @xref. Date: Mon, 06 Jul 2015 11:46:00 -0000 Message-Id: X-IsSubscribed: yes X-SW-Source: 2015-07/txt/msg00116.txt.bz2 It has been pointed out to me that in commit a4ea0946c I introduced a use of @xref that is not followed by either a ',' or a '.' as it is supposed to be[1]. Normally I would push such a trivial change as an obvious fix, however, I'm a little more nervous when it comes to documentation changes, so I'd like a review please. Thanks, Andrew [1] http://www.gnu.org/software/texinfo/manual/texinfo/html_node/Reference-Syntax.html#Reference-Syntax -- All uses of @xref must be followed by either '.' or ','. In commit a4ea0946c an incorrect use of @xref was introduced. This commit switches to using @ref in order to avoid the need for '.' or ','. gdb/ChangeLog: * doc/gdb.texinfo (TUI): Switch use of @xref to @ref. --- gdb/ChangeLog | 4 ++++ gdb/doc/gdb.texinfo | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 201af51..319d504 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2015-07-06 Andrew Burgess + + * doc/gdb.texinfo (TUI): Switch use of @xref to @ref. + 2015-07-02 Kevin Buettner * rx-tdep.c (RX_USP_REGNUM, RX_BPC_REGNUM): New constants. diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index 812917b..d3f17bc 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -24781,7 +24781,7 @@ The TUI mode is enabled by default when you invoke @value{GDBN} as @samp{@value{GDBP} -tui}. You can also switch in and out of TUI mode while @value{GDBN} runs by using various TUI commands and key bindings, such as @command{tui -enable} or @kbd{C-x C-a}. @xref{TUI Commands, ,TUI Commands} and +enable} or @kbd{C-x C-a}. See @ref{TUI Commands, ,TUI Commands} and @ref{TUI Keys, ,TUI Key Bindings}. @node TUI Overview -- 2.4.0