From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3893 invoked by alias); 24 Mar 2012 17:23:59 -0000 Received: (qmail 3882 invoked by uid 22791); 24 Mar 2012 17:23:57 -0000 X-SWARE-Spam-Status: No, hits=-6.3 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_HI,SPF_HELO_PASS,TW_SM,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sat, 24 Mar 2012 17:23:43 +0000 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q2OHNf4Q012288 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Sat, 24 Mar 2012 13:23:41 -0400 Received: from valrhona.uglyboxes.com (ovpn01.gateway.prod.ext.phx2.redhat.com [10.5.9.1]) by int-mx12.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id q2OHNcHt023336 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO); Sat, 24 Mar 2012 13:23:40 -0400 Message-ID: <4F6E0319.1080100@redhat.com> Date: Sat, 24 Mar 2012 17:23:00 -0000 From: Keith Seitz User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:10.0.1) Gecko/20120209 Thunderbird/10.0.1 MIME-Version: 1.0 To: asmwarrior CC: gdb-patches@sourceware.org Subject: Re: [RFA 1/3] Linespec rewrite: Parsing References: <4F67A319.4090608@redhat.com> <4F6DC651.6060704@gmail.com> In-Reply-To: <4F6DC651.6060704@gmail.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes 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 X-SW-Source: 2012-03/txt/msg00823.txt.bz2 On 03/24/2012 06:04 AM, asmwarrior wrote: > [debug]> break > "E:/code/cb/cb_trunk/src/plugins/codecompletion/parser/token.cpp:64" > [debug]unmatched quote This is now an illegal linespec. You do not need to quote this at all. This is one of the motivating factors for doing this rewrite: the quoting is _out of control_. [If you do want to quote it, ONLY quote the filename portion.] It appears you may be using the patches I submitted to the list. I've committed one or two additional patches for problems I've found to the archer branch, one of which deal specifically with quoting and embedded colons. I encourage you to try that branch: (gdb) break E:/code/cb/cb_trunk/src/plugins/codecompletion/parser/token.cpp:64 No source file named E:/code/cb/cb_trunk/src/plugins/codecompletion/parser/token.cpp. Leaving the quoting in place will force the lookup of the function "E:/.../token.cpp:64", which I'm guessing is not what you really want. :-) Thank you for giving the patch a whirl! Keith