From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Ralf Schmitt Newsgroups: gmane.emacs.devel Subject: Re: flymake mode freezes emacs Date: Thu, 09 Aug 2007 07:28:33 +0200 Message-ID: <46BAA601.4070904@brainbot.com> References: <46B8199F.1000501@brainbot.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="------------050902090305080804090307" X-Trace: sea.gmane.org 1186637317 3403 80.91.229.12 (9 Aug 2007 05:28:37 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 9 Aug 2007 05:28:37 +0000 (UTC) Cc: emacs-devel@gnu.org To: rms@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Aug 09 07:28:36 2007 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1IJ0ZX-0002SM-FE for ged-emacs-devel@m.gmane.org; Thu, 09 Aug 2007 07:28:35 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IJ0ZW-0004nS-FX for ged-emacs-devel@m.gmane.org; Thu, 09 Aug 2007 01:28:34 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IJ0ZS-0004lf-S2 for emacs-devel@gnu.org; Thu, 09 Aug 2007 01:28:30 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IJ0ZR-0004kl-V5 for emacs-devel@gnu.org; Thu, 09 Aug 2007 01:28:30 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IJ0ZR-0004kg-Sh for emacs-devel@gnu.org; Thu, 09 Aug 2007 01:28:29 -0400 Original-Received: from mail.brainbot.com ([217.86.167.205]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1IJ0ZQ-00070Q-QM; Thu, 09 Aug 2007 01:28:29 -0400 Original-Received: by mail.brainbot.com (Postfix, from userid 400) id CBEA415840A1; Thu, 9 Aug 2007 07:28:25 +0200 (CEST) Original-Received: from [192.168.10.173] (red.brainbot.com [192.168.10.173]) by mail.brainbot.com (Postfix) with ESMTP id 265E11584099; Thu, 9 Aug 2007 07:28:25 +0200 (CEST) User-Agent: Icedove 1.5.0.12 (X11/20070731) In-Reply-To: X-Detected-Kernel: Linux 2.6 (newer, 3) 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 Xref: news.gmane.org gmane.emacs.devel:76239 Archived-At: This is a multi-part message in MIME format. --------------050902090305080804090307 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Richard Stallman wrote: > " *\\(\\[javac\\]\\)? * > > That might be an infinite loop when there are spaces > but there is no [javac]. Please try replacing it with > > " *\\(\\[javac\\] *\\)? > It does fix the bug. Regards, - Ralf --------------050902090305080804090307 Content-Type: text/plain; name="diff.txt" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="diff.txt" # HG changeset patch # User ralf@brainbot.com # Date 1186637047 -7200 # Node ID 33682a5d9e1ef9777ed53941178c8cd90b37be9f # Parent 27407a272822df6df04dc8a5c1ae4249e8ddf807 fix diff -r 27407a272822 -r 33682a5d9e1e flymake.el --- a/flymake.el Thu Aug 09 07:22:17 2007 +0200 +++ b/flymake.el Thu Aug 09 07:24:07 2007 +0200 @@ -918,7 +918,7 @@ Convert it to flymake internal format." ("\\(.*\\) at \\([^ \n]+\\) line \\([0-9]+\\)[,.\n]" 2 3 nil 1) ;; LaTeX warnings (fileless) ("\\(LaTeX \\(Warning\\|Error\\): .*\\) on input line \\([0-9]+\\)" 20 3 nil 1) ;; ant/javac - (" *\\(\\[javac\\]\\)? *\\(\\([a-zA-Z]:\\)?[^:(\t\n]+\\)\:\\([0-9]+\\)\:[ \t\n]*\\(.+\\)" + (" *\\(\\[javac\\] *\\)?\\(\\([a-zA-Z]:\\)?[^:(\t\n]+\\)\:\\([0-9]+\\)\:[ \t\n]*\\(.+\\)" 2 4 nil 5)) ;; compilation-error-regexp-alist) (flymake-reformat-err-line-patterns-from-compile-el compilation-error-regexp-alist-alist)) --------------050902090305080804090307 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Emacs-devel mailing list Emacs-devel@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-devel --------------050902090305080804090307--