From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Rajsekar Manokaran Newsgroups: gmane.emacs.devel Subject: Re: compile.el does not find errors in numeric filenames Date: Sun, 6 Feb 2005 11:03:22 +0530 Message-ID: <9bec9e400502052133670b229c@mail.gmail.com> References: <9bec9e4005020320597e723ba4@mail.gmail.com> <9bec9e4005020506506e75cf86@mail.gmail.com> Reply-To: Rajsekar Manokaran NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1107668360 16190 80.91.229.2 (6 Feb 2005 05:39:20 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 6 Feb 2005 05:39:20 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Feb 06 06:39:20 2005 Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1Cxf8d-0000g5-Le for ged-emacs-devel@m.gmane.org; Sun, 06 Feb 2005 06:39:15 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1CxfMV-0004BE-15 for ged-emacs-devel@m.gmane.org; Sun, 06 Feb 2005 00:53:35 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1CxfLy-00049d-1f for emacs-devel@gnu.org; Sun, 06 Feb 2005 00:53:02 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1CxfLu-00047U-4F for emacs-devel@gnu.org; Sun, 06 Feb 2005 00:52:59 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1CxfLu-00047R-1l for emacs-devel@gnu.org; Sun, 06 Feb 2005 00:52:58 -0500 Original-Received: from [64.233.184.192] (helo=wproxy.gmail.com) by monty-python.gnu.org with esmtp (Exim 4.34) id 1Cxf2w-00053e-Vj for emacs-devel@gnu.org; Sun, 06 Feb 2005 00:33:23 -0500 Original-Received: by wproxy.gmail.com with SMTP id 36so701260wra for ; Sat, 05 Feb 2005 21:33:22 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:references; b=mkXXu2EMi5O5c2YCRPry+CSaMU1X5+VyZzX8QndiUIxNLjuTrTtNZijWaGEZKjygMAqRLzQ8PXX3POuyh9F+k3JM8g+uE9konZ9LeDhb2QSxWOBJ7JqUZ5Qyj3a+eeu/TZZgSiYoTggk723Bx/K1Fic37cp1WrFBk4G/h4q9BGA= Original-Received: by 10.54.57.30 with SMTP id f30mr136090wra; Sat, 05 Feb 2005 21:33:22 -0800 (PST) Original-Received: by 10.54.28.66 with HTTP; Sat, 5 Feb 2005 21:33:22 -0800 (PST) Original-To: emacs-devel@gnu.org In-Reply-To: <9bec9e4005020506506e75cf86@mail.gmail.com> X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org X-MailScanner-To: ged-emacs-devel@m.gmane.org Xref: main.gmane.org gmane.emacs.devel:32932 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:32932 i debugged the problem. the regexp was this (gnu "^\\(?:[[:alpha:]][-[:alnum:].]+: ?\\)?\ \\([/.]*[a-zA-Z]:?[^ \t\n:]*\\|{standard input}\\): ?\ \\([0-9]+\\)\\([.:]?\\)\\([0-9]+\\)?\ \\(?:-\\(?:\\([0-9]+\\)\\3\\)?\\.?\\([0-9]+\\)?\\)?:\ \\(?: *\\(\\(?:Future\\|Runtime\\)?[Ww]arning\\|W:\\)\\|\ *\\([Ii]nfo\\(?:\\>\\|rmationa?l?\\)\\|I:\\)\\)?" 1 (2 . 5) (4 . 6) (7 . 8)) and i changed it to (gnu "^\\(?:[[:alpha:]][-[:alnum:].]+: ?\\)?\ \\([/.]*[[:alnum:]]:?[^ \t\n:]*\\|{standard input}\\): ?\ \\([0-9]+\\)\\([.:]?\\)\\([0-9]+\\)?\ \\(?:-\\(?:\\([0-9]+\\)\\3\\)?\\.?\\([0-9]+\\)?\\)?:\ \\(?: *\\(\\(?:Future\\|Runtime\\)?[Ww]arning\\|W:\\)\\|\ *\\([Ii]nfo\\(?:\\>\\|rmationa?l?\\)\\|I:\\)\\)?" 1 (2 . 5) (4 . 6) (7 . 8)) I am also copying a diff file please try it out and comment on it diff -Naur old/compile.el new/compile.el --- old/compile.el 2005-02-04 11:18:41.148180000 +0530 +++ new/compile.el 2005-02-04 11:18:13.099444056 +0530 @@ -214,7 +214,7 @@ (gnu "^\\(?:[[:alpha:]][-[:alnum:].]+: ?\\)?\ -\\([/.]*[a-zA-Z]:?[^ \t\n:]*\\|{standard input}\\): ?\ +\\([/.]*[[:alnum:]]:?[^ \t\n:]*\\|{standard input}\\): ?\ \\([0-9]+\\)\\([.:]?\\)\\([0-9]+\\)?\ \\(?:-\\(?:\\([0-9]+\\)\\3\\)?\\.?\\([0-9]+\\)?\\)?:\ \\(?: *\\(\\(?:Future\\|Runtime\\)?[Ww]arning\\|W:\\)\\|\ On Sat, 5 Feb 2005 20:20:51 +0530, Rajsekar Manokaran wrote: > Sending this mail again coz i have not got any reply and something > tells me i sent this message before having got the reply from the > listbot. > > > I have a CVS version of emacs (checked out somewhere last week). > > I have a file with name like 10776.cc and compile.el does not > recognize the output as errors. > Then I changed the filename to a10776.cc and it worked > > i think one of the regexp in compilation-error-regexp-alist-alist > is not setup correctly > > could some help me out ? >