From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.help Subject: Re: help needed for extending compilation-error-regexp-alist Date: Wed, 26 Sep 2012 20:42:31 -0400 Message-ID: References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1348706717 2238 80.91.229.3 (27 Sep 2012 00:45:17 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 27 Sep 2012 00:45:17 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Sep 27 02:45:22 2012 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1TH2EB-0007M9-6y for geh-help-gnu-emacs@m.gmane.org; Thu, 27 Sep 2012 02:45:19 +0200 Original-Received: from localhost ([::1]:49811 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TH2E3-0002q7-Sh for geh-help-gnu-emacs@m.gmane.org; Wed, 26 Sep 2012 20:45:11 -0400 Original-Received: by 10.66.81.98 with SMTP id z2mr459302pax.19.1348706552036; Wed, 26 Sep 2012 17:42:32 -0700 (PDT) Original-Path: usenet.stanford.edu!4no12866430pbn.1!news-out.google.com!t10ni23581867pbh.0!nntp.google.com!npeer01.iad.highwinds-media.com!news.highwinds-media.com!feed-me.highwinds-media.com!post01.iad.highwinds-media.com!newsfe11.iad.POSTED!not-for-mail Original-Newsgroups: gnu.emacs.help User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.2.50 (gnu/linux) Cancel-Lock: sha1:OHfv90EtBzaH8rac9kUV9FdGzRY= Original-Lines: 14 Original-X-Complaints-To: abuse@UsenetServer.com Original-NNTP-Posting-Date: Thu, 27 Sep 2012 00:42:31 UTC X-Received-Bytes: 1183 Original-Xref: usenet.stanford.edu gnu.emacs.help:194599 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:86935 Archived-At: > Emacs 2.14 compile mode does not understand this format. I have tried > adding a new rule to compilation-error-regexp-alist by > (add-to-list 'compilation-error-regexp-alist '("File = \\([^ > ,\n]*\\), Line = \\([0-9]+\\)," 1 2)) > But compile still doesn't find these errors. I works in my tests. Are you sure the above line succeeds? If you run it before compile.el is loaded, it will simply signal an error because compilation-error-regexp-alist won't exist yet. Stefan