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: Fri, 4 Feb 2005 11:20:02 +0530 Message-ID: <9bec9e40050203215078b13303@mail.gmail.com> References: <9bec9e4005020320597e723ba4@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 1107497710 4070 80.91.229.2 (4 Feb 2005 06:15:10 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 4 Feb 2005 06:15:10 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Feb 04 07:15:09 2005 Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1CwwkD-0007P0-8l for ged-emacs-devel@m.gmane.org; Fri, 04 Feb 2005 07:15:05 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Cwwxg-0002Hf-6f for ged-emacs-devel@m.gmane.org; Fri, 04 Feb 2005 01:29:00 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1CwwwH-0001w7-TX for emacs-devel@gnu.org; Fri, 04 Feb 2005 01:27:36 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1CwwwA-0001ta-Iw for emacs-devel@gnu.org; Fri, 04 Feb 2005 01:27:28 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1CwwwA-0001oe-1d for emacs-devel@gnu.org; Fri, 04 Feb 2005 01:27:26 -0500 Original-Received: from [64.233.184.204] (helo=wproxy.gmail.com) by monty-python.gnu.org with esmtp (Exim 4.34) id 1CwwLy-00063x-Hi for emacs-devel@gnu.org; Fri, 04 Feb 2005 00:50:02 -0500 Original-Received: by wproxy.gmail.com with SMTP id 36so413425wra for ; Thu, 03 Feb 2005 21:50:02 -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=OBOWr1yYDUpNb9sVaIV0PsrBt1hALEQQmPezf0Qt636ShNxiFUOQ/SJELw/ifud1TU0/F9Mi7E2Mo92Fw8uLdRzDdQPcxlNAQDQeMSWjsmTzI7uzEaMNTaBYPv0Ga5fWAvnzr21AmZWfqkXr0I+99ooKnbCI/pdTfjzzKZkmpyU= Original-Received: by 10.54.28.44 with SMTP id b44mr166681wrb; Thu, 03 Feb 2005 21:50:02 -0800 (PST) Original-Received: by 10.54.28.66 with HTTP; Thu, 3 Feb 2005 21:50:02 -0800 (PST) Original-To: emacs-devel@gnu.org In-Reply-To: <9bec9e4005020320597e723ba4@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:32858 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:32858 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 Fri, 4 Feb 2005 10:29:04 +0530, Rajsekar Manokaran wrote: > 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 ? >