From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 31127 invoked by alias); 5 Nov 2013 03:42:08 -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 31117 invoked by uid 89); 5 Nov 2013 03:42:08 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=AWL,BAYES_50,RDNS_NONE,SPF_SOFTFAIL autolearn=no version=3.3.2 X-HELO: mtaout21.012.net.il Received: from Unknown (HELO mtaout21.012.net.il) (80.179.55.169) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 05 Nov 2013 03:42:06 +0000 Received: from conversion-daemon.a-mtaout21.012.net.il by a-mtaout21.012.net.il (HyperSendmail v2007.08) id <0MVR00700TTGRK00@a-mtaout21.012.net.il> for gdb-patches@sourceware.org; Tue, 05 Nov 2013 05:41:58 +0200 (IST) Received: from HOME-C4E4A596F7 ([87.69.4.28]) by a-mtaout21.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0MVR00747U9XRF20@a-mtaout21.012.net.il>; Tue, 05 Nov 2013 05:41:58 +0200 (IST) Date: Tue, 05 Nov 2013 09:15:00 -0000 From: Eli Zaretskii Subject: Re: [PATCH] fix PR c++/16117 In-reply-to: <1383599806-19444-1-git-send-email-tromey@redhat.com> To: Tom Tromey Cc: gdb-patches@sourceware.org, tromey@redhat.com Reply-to: Eli Zaretskii Message-id: <83fvrb8qgt.fsf@gnu.org> References: <1383599806-19444-1-git-send-email-tromey@redhat.com> X-IsSubscribed: yes X-SW-Source: 2013-11/txt/msg00071.txt.bz2 > From: Tom Tromey > Cc: Tom Tromey > Date: Mon, 4 Nov 2013 14:16:46 -0700 > > +For example, suppose the program is stopped in a method of a class > +that has a field named ``includefile'', and there is also an include > +file named ``includefile'' that defines a variable, ``some_global''. All these symbols in quotes should actually use the appropriate markup instead: @code for C++ symbols, @file for file names. The documentation part is OK with this fixed. > +(@value{GDBP}) p includefile::some_global > +A syntax error in expression, near `'. I wonder if we can do better with the pointer to the place of the syntax error: `' is not very specific ;-) Thanks.