From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 120391 invoked by alias); 13 Nov 2015 08:16:00 -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 120381 invoked by uid 89); 13 Nov 2015 08:15:59 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.9 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_NONE,SPF_SOFTFAIL autolearn=no version=3.3.2 X-HELO: mtaout28.012.net.il Received: from mtaout28.012.net.il (HELO mtaout28.012.net.il) (80.179.55.184) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 13 Nov 2015 08:15:57 +0000 Received: from conversion-daemon.mtaout28.012.net.il by mtaout28.012.net.il (HyperSendmail v2007.08) id <0NXQ00H00UKW6600@mtaout28.012.net.il> for gdb-patches@sourceware.org; Fri, 13 Nov 2015 10:14:48 +0200 (IST) Received: from HOME-C4E4A596F7 ([84.94.185.246]) by mtaout28.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0NXQ00ESMUWOW530@mtaout28.012.net.il>; Fri, 13 Nov 2015 10:14:48 +0200 (IST) Date: Fri, 13 Nov 2015 08:16:00 -0000 From: Eli Zaretskii Subject: Re: [PATCH 3/3] Target remote mode fork and exec docs In-reply-to: <56453917.9090801@codesourcery.com> To: Don Breazeal Cc: gdb-patches@sourceware.org Reply-to: Eli Zaretskii Message-id: <83io56gvrl.fsf@gnu.org> References: <1447290000-31393-1-git-send-email-donb@codesourcery.com> <1447290000-31393-2-git-send-email-donb@codesourcery.com> <83mvuji2p9.fsf@gnu.org> <56453917.9090801@codesourcery.com> X-IsSubscribed: yes X-SW-Source: 2015-11/txt/msg00283.txt.bz2 > CC: "gdb-patches@sourceware.org" > From: Don Breazeal > Date: Thu, 12 Nov 2015 17:12:55 -0800 > > >> +In @code{target extended-remote} mode, you can also attach using the > >> +@value{GDBN} attach command > >> +(@pxref{Types of Remote Connections: Attaching}). > > > > I don't understand this @pxref -- there's no such node or anchor in > > the text. Does this work for you? (Also, using a colon in > > cross-reference or node names is a bad idea, as that confuses Info > > readers.) > > These last two I had fixed in my sandbox but apparently the fixes didn't > make it into the patch I posted, sorry about that. :-S > > Regarding the @pxrefs that had colons in them, I have a question. I was > making a cross-reference into the middle of a section, so > there is no section heading to use as the name of the reference. I was > trying to refer to "The part about Attaching that is in the section > 'Types of Remote Connections'". How about: > > @anchor{Attaching in Types of Remote Connections} That's one possibility, yes. Another is to use @pxref with 2 arguments (see the Texinfo manual for the details), with the 2nd argument being some phrase that begins the part of the text to which you want to jump. Unfortunately, the second alternative is only supported by some Info readers, not all of them. Thanks.