From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.help Subject: Re: Problems stepping through PC-lint output Date: Fri, 04 Nov 2005 13:04:57 +0200 Message-ID: References: NNTP-Posting-Host: main.gmane.org X-Trace: sea.gmane.org 1131105878 3348 80.91.229.2 (4 Nov 2005 12:04:38 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 4 Nov 2005 12:04:38 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Fri Nov 04 13:04:37 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1EY0Hf-0006M5-RC for geh-help-gnu-emacs@m.gmane.org; Fri, 04 Nov 2005 13:03:04 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1EY0Hf-0005bD-A0 for geh-help-gnu-emacs@m.gmane.org; Fri, 04 Nov 2005 07:03:03 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1EXzNS-00040w-7W for help-gnu-emacs@gnu.org; Fri, 04 Nov 2005 06:04:58 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1EXzNQ-0003zh-Oo for help-gnu-emacs@gnu.org; Fri, 04 Nov 2005 06:04:57 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1EXzNQ-0003z8-0f for help-gnu-emacs@gnu.org; Fri, 04 Nov 2005 06:04:56 -0500 Original-Received: from [192.114.186.66] (helo=romy.inter.net.il) by monty-python.gnu.org with esmtp (Exim 4.34) id 1EXzNP-0004Uu-OO for help-gnu-emacs@gnu.org; Fri, 04 Nov 2005 06:04:55 -0500 Original-Received: from HOME-C4E4A596F7 (IGLD-80-230-72-192.inter.net.il [80.230.72.192]) by romy.inter.net.il (MOS 3.5.8-GR) with ESMTP id CWW69111 (AUTH halo1); Fri, 4 Nov 2005 13:04:52 +0200 (IST) Original-To: help-gnu-emacs@gnu.org In-reply-to: (message from Sarir Khamsi on Thu, 03 Nov 2005 15:10:34 -0700) X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:30817 Archived-At: > From: Sarir Khamsi > Date: Thu, 03 Nov 2005 15:10:34 -0700 > > I am using GNU Emacs (22.0.50.20) on WinXP, SP2 Problems with the CVS version of Emacs should be posted to emacs-devel@gnu.org, not here. > For example, given the lines > > --- Module: Vehicle.cpp > _ > #define D2R 0.0174532925199433 > MathGlobals.h:41:12: Note 1923: macro 'D2R' could become const variable -- > Effective C++ #1 > _ > #define R2D 1/D2R > MathGlobals.h:42:14: Info 773: Expression-like macro 'R2D' not parenthesized > MathGlobals.h:42:14: Note 1923: macro 'R2D' could become const variable -- > Effective C++ #1 > _ > d_IParam(double); > ConcreteTypes.hpp:21:19: Note 1931: Constructor 'd_IParam::d_IParam(double)' > can be used for implicit conversions -- More Effective C++ #5 > _ > i_IParam(int); > > the "MathGlobals.h:42:14: Info 773" line will get skipped and Emacs > will jump to the next message (in this case, the second "Note 1923" > about R2D). I suspect that this is because "info:" is special to the compilation messages parser. See the file etc/compilation.txt in the Emacs distribution. If you post this to emacs-devel, the Emacs developers will look at the problem and try to fix it.