From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20813 invoked by alias); 10 Nov 2004 20:47:29 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 20650 invoked from network); 10 Nov 2004 20:47:10 -0000 Received: from unknown (HELO legolas.inter.net.il) (192.114.186.24) by sourceware.org with SMTP; 10 Nov 2004 20:47:10 -0000 Received: from zaretski ([80.230.154.117]) by legolas.inter.net.il (MOS 3.5.5-GR) with ESMTP id DBR15324 (AUTH halo1); Wed, 10 Nov 2004 22:40:22 +0200 (IST) Date: Wed, 10 Nov 2004 20:47:00 -0000 From: "Eli Zaretskii" To: Andrew Cagney Message-ID: <01c4c764$Blat.v2.2.2$d7e3bce0@zahav.net.il> Content-Transfer-Encoding: 7BIT Content-Type: text/plain; charset=ISO-8859-1 CC: randolph@tausq.org, gdb-patches@sources.redhat.com In-reply-to: <41924990.9060504@gnu.org> (message from Andrew Cagney on Wed, 10 Nov 2004 12:02:08 -0500) Subject: Re: [RFA] Don't unwind past entry point Reply-to: Eli Zaretskii References: <20041109192430.GW15714@tausq.org> <41924990.9060504@gnu.org> X-SW-Source: 2004-11/txt/msg00212.txt.bz2 > Date: Wed, 10 Nov 2004 12:02:08 -0500 > From: Andrew Cagney > Cc: gdb-patches@sources.redhat.com > > Check eli for the doco. Thanks for the heads-up, I missed the original message. > @table @code > @item set backtrace past-main > @itemx set backtrace past-main on > -@kindex set backtrace > +@kindex set backtrace past-main Please don't make this change. When there are several commands that begin with the same string, like "set backtrace SOMETHING" which all begin with "set backtrace", we should always index only the common part and do it only once, so that we end up with a single index entry that points to the place where the whole family is described. So please leave only the original "@kindex set backtrace" and "@kindex show backtrace" entries, and remove all the rest. > -@kindex show backtrace > +@kindex show backtrace past-main This change should also be undone. > +This entry point is encoded by the linker when the application is built, > +and is likely before the user entry point ``main'' (or equivalent) is called. Please use @code{main}, without any quotes. This produces `main' in the Info manual and uses an appropriate typeface in the printed version. Otherwise, the doco patch is fine. Thanks.