From unknown Mon Jun 23 02:21:25 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#3928 <3928@debbugs.gnu.org> To: bug#3928 <3928@debbugs.gnu.org> Subject: Status: 23.1.50; compilation-mode not matching perl and more [regression] Reply-To: bug#3928 <3928@debbugs.gnu.org> Date: Mon, 23 Jun 2025 09:21:25 +0000 retitle 3928 23.1.50; compilation-mode not matching perl and more [regressi= on] reassign 3928 emacs submitter 3928 Kevin Ryde severity 3928 normal thanks From gg@zip.com.au Sat Jul 25 05:43:18 2009 Received: (at submit) by emacsbugs.donarmstrong.com; 25 Jul 2009 12:43:19 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=-1.1 required=4.0 tests=AWL,FOURLA,MURPHY_WRONG_WORD1, MURPHY_WRONG_WORD2 autolearn=no version=3.2.5-bugs.debian.org_2005_01_02 Received: from fencepost.gnu.org (fencepost.gnu.org [140.186.70.10]) by rzlab.ucr.edu (8.14.3/8.14.3/Debian-5) with ESMTP id n6PChDNo014009 for ; Sat, 25 Jul 2009 05:43:15 -0700 Received: from mx10.gnu.org ([199.232.76.166]:59571) by fencepost.gnu.org with esmtp (Exim 4.67) (envelope-from ) id 1MUgan-00016w-ID for emacs-pretest-bug@gnu.org; Sat, 25 Jul 2009 08:43:13 -0400 Received: from Debian-exim by monty-python.gnu.org with spam-scanned (Exim 4.60) (envelope-from ) id 1MUgal-0002hQ-CS for emacs-pretest-bug@gnu.org; Sat, 25 Jul 2009 08:43:13 -0400 Received: from mailout2-10.pacific.net.au ([125.255.80.137]:33771 helo=mailout2.pacific.net.au) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MUgak-0002hI-JY for emacs-pretest-bug@gnu.org; Sat, 25 Jul 2009 08:43:11 -0400 Received: from mailproxy2.pacific.net.au (mailproxy2.pacific.net.au [61.8.2.163]) by mailout2.pacific.net.au (Postfix) with ESMTP id 9CA9F156B52 for ; Sat, 25 Jul 2009 22:43:09 +1000 (EST) Received: from blah.blah (ppp2F11.dyn.pacific.net.au [61.8.47.17]) by mailproxy2.pacific.net.au (Postfix) with ESMTP id 2004E27407 for ; Sat, 25 Jul 2009 22:43:08 +1000 (EST) Received: from gg by blah.blah with local (Exim 4.69) (envelope-from ) id 1MUgaK-0002J9-L3 for emacs-pretest-bug@gnu.org; Sat, 25 Jul 2009 22:42:44 +1000 From: Kevin Ryde To: emacs-pretest-bug@gnu.org Subject: 23.1.50; compilation-mode not matching perl and more [regression] Date: Sat, 25 Jul 2009 22:42:44 +1000 Message-ID: <873a8l3pdn.fsf@blah.blah> User-Agent: Gnus/5.110011 (No Gnus v0.11) Emacs/22.3 (gnu/linux) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) --=-=-= Running "emacs -Q etc/compilation.txt" and scrolling down to the perl section shows none of the sample perl errors matched at all, where I hoped they would be. I think the "^" anchor added by compilation-mode-font-lock-keywords means perl and some other more obscure patterns need a ".*", like they had back in Emacs 21, to work in the middle of a line. I noticed this on the perl one. I thought it was working fine not so long ago, so I don't know what/when/how it went bad. (The looseness of Emacs 22 not anchoring reverted, but the patterns not put back at the same time too??) 2009-07-25 Kevin Ryde * progmodes/compile.el (compilation-error-regexp-alist-alist): In aix, ftnchek, mips-1, mips-2, perl, sun, 4bsd entries add ".*" so as to match in the middle of a line, now that there's a "^" anchor is again enforced by compilation-mode-font-lock-keywords. These patterns were otherwise failing to match anything at all. In the 4bsd entry remove the "^" from inside the \\(\\) grouping since it's now unnecessary and since inside a group it isn't recognised by the omake indentation hack in compilation-mode-font-lock-keywords (meaning it wouldn't work with indentation). --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=compile.el.cope-with-anchoring.diff *** compile.el 11 Jul 2009 07:12:48 +1000 1.495 --- compile.el 25 Jul 2009 21:55:50 +1000 *************** *** 173,179 **** "\\(warning: .*\\)? at \\([^ \n]+\\):\\([0-9]+\\)$" 2 3 nil (1)) (aix ! " in line \\([0-9]+\\) of file \\([^ \n]+[^. \n]\\)\\.? " 2 1) (ant "^[ \t]*\\[[^] \n]+\\][ \t]*\\([^: \n]+\\):\\([0-9]+\\):\\(?:\\([0-9]+\\):[0-9]+:[0-9]+:\\)?\ --- 173,179 ---- "\\(warning: .*\\)? at \\([^ \n]+\\):\\([0-9]+\\)$" 2 3 nil (1)) (aix ! ".* in line \\([0-9]+\\) of file \\([^ \n]+[^. \n]\\)\\.? " 2 1) (ant "^[ \t]*\\[[^] \n]+\\][ \t]*\\([^: \n]+\\):\\([0-9]+\\):\\(?:\\([0-9]+\\):[0-9]+:[0-9]+:\\)?\ *************** *** 207,213 **** "^Error [0-9]+ at (\\([0-9]+\\):\\([^)\n]+\\))" 2 1) (ftnchek ! "\\(^Warning .*\\)? line[ \n]\\([0-9]+\\)[ \n]\\(?:col \\([0-9]+\\)[ \n]\\)?file \\([^ :;\n]+\\)" 4 2 3 (1)) (iar --- 207,213 ---- "^Error [0-9]+ at (\\([0-9]+\\):\\([^)\n]+\\))" 2 1) (ftnchek ! "\\(Warning\\)?.* line[ \n]\\([0-9]+\\)[ \n]\\(?:col \\([0-9]+\\)[ \n]\\)?file \\([^ :;\n]+\\)" 4 2 3 (1)) (iar *************** *** 284,292 **** ;; Should be lint-1, lint-2 (SysV lint) (mips-1 ! " (\\([0-9]+\\)) in \\([^ \n]+\\)" 2 1) (mips-2 ! " in \\([^()\n ]+\\)(\\([0-9]+\\))$" 1 2) (msft ;; AFAWK, The message may be a "warning", "error", or "fatal error". --- 284,292 ---- ;; Should be lint-1, lint-2 (SysV lint) (mips-1 ! ".* (\\([0-9]+\\)) in \\([^ \n]+\\)" 2 1) (mips-2 ! ".* in \\([^()\n ]+\\)(\\([0-9]+\\))$" 1 2) (msft ;; AFAWK, The message may be a "warning", "error", or "fatal error". *************** *** 308,314 **** ;; warnings" in recent perl when breaking circular references ;; during program or thread exit. (perl ! " at \\([^ \n]+\\) line \\([0-9]+\\)\\(?:[,.]\\|$\\| \ during global destruction\\.$\\)" 1 2) (php --- 308,314 ---- ;; warnings" in recent perl when breaking circular references ;; during program or thread exit. (perl ! "XXXXXXXXXX.* at \\([^ \n]+\\) line \\([0-9]+\\)\\(?:[,.]\\|$\\| \ during global destruction\\.$\\)" 1 2) (php *************** *** 332,338 **** nil 1 nil (3) nil (2 (compilation-face '(3)))) (sun ! ": \\(?:ERROR\\|WARNIN\\(G\\)\\|REMAR\\(K\\)\\) \\(?:[[:alnum:] ]+, \\)?\ File = \\(.+\\), Line = \\([0-9]+\\)\\(?:, Column = \\([0-9]+\\)\\)?" 3 4 5 (1 . 2)) --- 332,338 ---- nil 1 nil (3) nil (2 (compilation-face '(3)))) (sun ! ".*: \\(?:ERROR\\|WARNIN\\(G\\)\\|REMAR\\(K\\)\\) \\(?:[[:alnum:] ]+, \\)?\ File = \\(.+\\), Line = \\([0-9]+\\)\\(?:, Column = \\([0-9]+\\)\\)?" 3 4 5 (1 . 2)) *************** *** 345,351 **** 1 2 nil (4)) (4bsd ! "\\(?:^\\|:: \\|\\S ( \\)\\(/[^ \n\t()]+\\)(\\([0-9]+\\))\ \\(?:: \\(warning:\\)?\\|$\\| ),\\)" 1 2 nil (3)) (gcov-file --- 345,351 ---- 1 2 nil (4)) (4bsd ! "^\\(?:\\|.*:: \\|.*\\S ( \\)\\(/[^ \n\t()]+\\)(\\([0-9]+\\))\ \\(?:: \\(warning:\\)?\\|$\\| ),\\)" 1 2 nil (3)) (gcov-file --=-=-= In GNU Emacs 23.1.50.4 (i586-pc-linux-gnu, GTK+ Version 2.16.4) of 2009-07-24 on blah.blah configured using `configure 'CFLAGS=-O -g' '--prefix=/down/emacs/b/inst' '--with-x-toolkit=gtk'' Important settings: value of $LC_ALL: nil value of $LC_COLLATE: nil value of $LC_CTYPE: nil value of $LC_MESSAGES: nil value of $LC_MONETARY: nil value of $LC_NUMERIC: nil value of $LC_TIME: nil value of $LANG: en_AU value of $XMODIFIERS: nil locale-coding-system: iso-latin-1-unix default-enable-multibyte-characters: t --=-=-=-- From gg@zip.com.au Sun Jul 26 18:13:44 2009 Received: (at 3928) by emacsbugs.donarmstrong.com; 27 Jul 2009 01:13:45 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=-2.6 required=4.0 tests=AWL,HAS_BUG_NUMBER, MURPHY_WRONG_WORD1,MURPHY_WRONG_WORD2 autolearn=ham version=3.2.5-bugs.debian.org_2005_01_02 Received: from mailout1.pacific.net.au (mailout1-1.pacific.net.au [61.8.2.208]) by rzlab.ucr.edu (8.14.3/8.14.3/Debian-5) with ESMTP id n6R1Dcke027451 for <3928@emacsbugs.donarmstrong.com>; Sun, 26 Jul 2009 18:13:40 -0700 Received: from mailproxy2.pacific.net.au (mailproxy2.pacific.net.au [61.8.2.163]) by mailout1.pacific.net.au (Postfix) with ESMTP id 71F9A4FCF1E for <3928@emacsbugs.donarmstrong.com>; Mon, 27 Jul 2009 11:13:37 +1000 (EST) Received: from blah.blah (ppp2D41.dyn.pacific.net.au [61.8.45.65]) by mailproxy2.pacific.net.au (Postfix) with ESMTP id 5620427442 for <3928@emacsbugs.donarmstrong.com>; Mon, 27 Jul 2009 11:13:36 +1000 (EST) Received: from gg by blah.blah with local (Exim 4.69) (envelope-from ) id 1MVEm4-0006vu-Mr for 3928@emacsbugs.donarmstrong.com; Mon, 27 Jul 2009 11:13:08 +1000 From: Kevin Ryde To: 3928@debbugs.gnu.org Subject: Re: bug#3928: compilation-mode not matching perl and more [regression] References: <873a8l3pdn.fsf@blah.blah> Date: Mon, 27 Jul 2009 11:13:07 +1000 In-Reply-To: (Emacs bug Tracking System's message of "Sat, 25 Jul 2009 12:50:04 +0000") Message-ID: <871vo39bdo.fsf_-_@blah.blah> User-Agent: Gnus/5.110011 (No Gnus v0.11) Emacs/22.3 (gnu/linux) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" --=-=-= The ada entry is afflicted too (it's supposed to match the second part of its compilation.txt, its first part is matched by the gnu pattern). So, 2009-07-27 Kevin Ryde * progmodes/compile.el (compilation-error-regexp-alist-alist): In ada, aix, ftnchek, mips-1, mips-2, perl, sun, 4bsd entries add ".*" so as to match in the middle of a line, now that there's a "^" anchor is again enforced by compilation-mode-font-lock-keywords. These patterns were otherwise failing to match anything at all. In the 4bsd entry remove the "^" from inside the \\(\\) grouping since it's now unnecessary and since inside a group it isn't recognised by the omake indentation hack in compilation-mode-font-lock-keywords (meaning it wouldn't work with indentation). --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=compile.el.cope-with-anchoring-2.diff *** compile.el 11 Jul 2009 07:12:48 +1000 1.495 --- compile.el 26 Jul 2009 14:43:04 +1000 *************** *** 170,179 **** of[ \t]+\"?\\([a-zA-Z]?:?[^\":\n]+\\)\"?:" 3 2 nil (1)) (ada ! "\\(warning: .*\\)? at \\([^ \n]+\\):\\([0-9]+\\)$" 2 3 nil (1)) (aix ! " in line \\([0-9]+\\) of file \\([^ \n]+[^. \n]\\)\\.? " 2 1) (ant "^[ \t]*\\[[^] \n]+\\][ \t]*\\([^: \n]+\\):\\([0-9]+\\):\\(?:\\([0-9]+\\):[0-9]+:[0-9]+:\\)?\ --- 170,179 ---- of[ \t]+\"?\\([a-zA-Z]?:?[^\":\n]+\\)\"?:" 3 2 nil (1)) (ada ! "\\(warning:\\)?.* at \\([^ \n]+\\):\\([0-9]+\\)$" 2 3 nil (1)) (aix ! ".* in line \\([0-9]+\\) of file \\([^ \n]+[^. \n]\\)\\.? " 2 1) (ant "^[ \t]*\\[[^] \n]+\\][ \t]*\\([^: \n]+\\):\\([0-9]+\\):\\(?:\\([0-9]+\\):[0-9]+:[0-9]+:\\)?\ *************** *** 207,213 **** "^Error [0-9]+ at (\\([0-9]+\\):\\([^)\n]+\\))" 2 1) (ftnchek ! "\\(^Warning .*\\)? line[ \n]\\([0-9]+\\)[ \n]\\(?:col \\([0-9]+\\)[ \n]\\)?file \\([^ :;\n]+\\)" 4 2 3 (1)) (iar --- 207,213 ---- "^Error [0-9]+ at (\\([0-9]+\\):\\([^)\n]+\\))" 2 1) (ftnchek ! "\\(Warning\\)?.* line[ \n]\\([0-9]+\\)[ \n]\\(?:col \\([0-9]+\\)[ \n]\\)?file \\([^ :;\n]+\\)" 4 2 3 (1)) (iar *************** *** 284,292 **** ;; Should be lint-1, lint-2 (SysV lint) (mips-1 ! " (\\([0-9]+\\)) in \\([^ \n]+\\)" 2 1) (mips-2 ! " in \\([^()\n ]+\\)(\\([0-9]+\\))$" 1 2) (msft ;; AFAWK, The message may be a "warning", "error", or "fatal error". --- 284,292 ---- ;; Should be lint-1, lint-2 (SysV lint) (mips-1 ! ".* (\\([0-9]+\\)) in \\([^ \n]+\\)" 2 1) (mips-2 ! ".* in \\([^()\n ]+\\)(\\([0-9]+\\))$" 1 2) (msft ;; AFAWK, The message may be a "warning", "error", or "fatal error". *************** *** 308,314 **** ;; warnings" in recent perl when breaking circular references ;; during program or thread exit. (perl ! " at \\([^ \n]+\\) line \\([0-9]+\\)\\(?:[,.]\\|$\\| \ during global destruction\\.$\\)" 1 2) (php --- 308,314 ---- ;; warnings" in recent perl when breaking circular references ;; during program or thread exit. (perl ! "XXXXXXXXXX.* at \\([^ \n]+\\) line \\([0-9]+\\)\\(?:[,.]\\|$\\| \ during global destruction\\.$\\)" 1 2) (php *************** *** 332,338 **** nil 1 nil (3) nil (2 (compilation-face '(3)))) (sun ! ": \\(?:ERROR\\|WARNIN\\(G\\)\\|REMAR\\(K\\)\\) \\(?:[[:alnum:] ]+, \\)?\ File = \\(.+\\), Line = \\([0-9]+\\)\\(?:, Column = \\([0-9]+\\)\\)?" 3 4 5 (1 . 2)) --- 332,338 ---- nil 1 nil (3) nil (2 (compilation-face '(3)))) (sun ! ".*: \\(?:ERROR\\|WARNIN\\(G\\)\\|REMAR\\(K\\)\\) \\(?:[[:alnum:] ]+, \\)?\ File = \\(.+\\), Line = \\([0-9]+\\)\\(?:, Column = \\([0-9]+\\)\\)?" 3 4 5 (1 . 2)) *************** *** 345,351 **** 1 2 nil (4)) (4bsd ! "\\(?:^\\|:: \\|\\S ( \\)\\(/[^ \n\t()]+\\)(\\([0-9]+\\))\ \\(?:: \\(warning:\\)?\\|$\\| ),\\)" 1 2 nil (3)) (gcov-file --- 345,351 ---- 1 2 nil (4)) (4bsd ! "^\\(?:\\|.*:: \\|.*\\S ( \\)\\(/[^ \n\t()]+\\)(\\([0-9]+\\))\ \\(?:: \\(warning:\\)?\\|$\\| ),\\)" 1 2 nil (3)) (gcov-file --=-=-=-- From rgm@gnu.org Mon Oct 12 09:24:52 2009 Received: (at control) by emacsbugs.donarmstrong.com; 12 Oct 2009 16:24:52 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=-6.2 required=4.0 tests=AWL,HAS_BUG_NUMBER, MURPHY_DRUGS_REL8,URIBL_CNKR,X_DEBBUGS_NO_ACK autolearn=unavailable version=3.2.5-bugs.debian.org_2005_01_02 Received: from fencepost.gnu.org (fencepost.gnu.org [140.186.70.10]) by rzlab.ucr.edu (8.14.3/8.14.3/Debian-5) with ESMTP id n9CGOps7003701; Mon, 12 Oct 2009 09:24:52 -0700 Received: from rgm by fencepost.gnu.org with local (Exim 4.67) (envelope-from ) id 1MxNhZ-0002Dc-GX; Mon, 12 Oct 2009 12:24:49 -0400 From: Glenn Morris To: LanX Cc: 4689@debbugs.gnu.org Subject: Re: bug#4689: 23.1.50; Matching of error lines in *compilation* buffer is broken for perl-files References: <4AD2DFE7.9070205@cena.fr> X-Spook: bank threat BCCI MILSATCOM Mossad NWO subversive Juiliett X-Ran: QpD|HZqI)plmzKNo`vy&5)04&pOq8UIg)/SEuo!>)wn#)m~[5*!Q|{E#I&e?`@bfg`@^S: X-Hue: magenta X-Debbugs-No-Ack: yes X-Attribution: GM Date: Mon, 12 Oct 2009 12:24:49 -0400 In-Reply-To: (LanX's message of "Mon, 12 Oct 2009 16:26:53 +0200") Message-ID: <3bpkcfulq.fsf@fencepost.gnu.org> User-Agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii merge 4689 3928 stop LanX wrote: > :~$ emacs-23.1.50 -Q -debug-init -no-site-file ~/tst.pl -f cperl-mode > --eval='(compile "perl ~/tst.pl")' Thanks. If only we could have started here. I guess this is a duplicate of bug#3928. (The patch in that report has some issues, eg XXX in the perl part.) From rgm@gnu.org Mon Oct 12 12:34:53 2009 Received: (at 3928) by emacsbugs.donarmstrong.com; 12 Oct 2009 19:34:54 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=-4.7 required=4.0 tests=AWL,URIBL_CNKR, X_DEBBUGS_NO_ACK autolearn=ham version=3.2.5-bugs.debian.org_2005_01_02 Received: from fencepost.gnu.org (fencepost.gnu.org [140.186.70.10]) by rzlab.ucr.edu (8.14.3/8.14.3/Debian-5) with ESMTP id n9CJYqiL032725 for <3928@emacsbugs.donarmstrong.com>; Mon, 12 Oct 2009 12:34:53 -0700 Received: from rgm by fencepost.gnu.org with local (Exim 4.67) (envelope-from ) id 1MxQfT-0003bp-K8; Mon, 12 Oct 2009 15:34:51 -0400 From: Glenn Morris To: Sam Steingold Cc: 3928@debbugs.gnu.org Subject: changes to compilation-mode X-Spook: David John Oates ARPA South Africa Lexis-Nexis FTS2000 X-Ran: y,)SE,u^&4M|U*\Ih^_r{z0BZ\b[!D06Ch()\t^"mB8hcuzk!A2,MZ:F9XeiN=kf]sR]#. X-Hue: green X-Debbugs-No-Ack: yes X-Attribution: GM Date: Mon, 12 Oct 2009 15:34:51 -0400 Message-ID: <9f4oq44d9g.fsf@fencepost.gnu.org> User-Agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Hi. This change: 2009-07-10 Sam Steingold * progmodes/compile.el (compilation-mode-font-lock-keywords): Omake sometimes indents the errors it prints, so allow all regexps to start with spaces. seems to cause issues with several of the existing compilation error regexps. See http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3928 Please could you comment on / fix this? I think it would be better not to have to change a bunch of the existing regexps. From sam.steingold@gmail.com Mon Oct 12 14:06:13 2009 Received: (at 3928) by emacsbugs.donarmstrong.com; 12 Oct 2009 21:06:13 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: ** X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=2.5 required=4.0 tests=URIBL_CNKR autolearn=no version=3.2.5-bugs.debian.org_2005_01_02 Received: from mail-gx0-f228.google.com (mail-gx0-f228.google.com [209.85.217.228]) by rzlab.ucr.edu (8.14.3/8.14.3/Debian-5) with ESMTP id n9CL6Bj4015039 for <3928@emacsbugs.donarmstrong.com>; Mon, 12 Oct 2009 14:06:13 -0700 Received: by gxk28 with SMTP id 28so3913086gxk.9 for <3928@emacsbugs.donarmstrong.com>; Mon, 12 Oct 2009 14:06:06 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:received:in-reply-to :references:date:x-google-sender-auth:message-id:subject:from:to:cc :content-type; bh=tooQR5k3LN0zzsC18HlrH9pJstXLHHT027sGiBcBtx8=; b=FK8FWq23RLT6M3uDjaKponyk1rOnaSajGwcueqpZVRZbLlqRFvw9Y1+ljBCY54Wg9O uePAbLyKRte87ZJwYDdgI7bQn3JBveP17ZluAVm2FJSECmiNISON5FMfNmVpJFiZRhwm o+1V+NVhuab4xEMEDjDYBnyHSwKr2gw6vrGbI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; b=TIzFmXOR2V5AiV3zUxxd0ywn/510ycel+V+YPafkkS06vAs5V5EVdi9QTnZIYfUg+I rZ/W5/IKMxIk3fy+0aHk9Twq6nBc7iKK+j9JSOeENm/LDU1bnTf2fRbCZUsVsmAT7Vqw zLg89c6UpWTB9hPQrl1FdzAYz6NvAj8jZnYjQ= MIME-Version: 1.0 Sender: sam.steingold@gmail.com Received: by 10.150.35.3 with SMTP id i3mr10970110ybi.128.1255381566455; Mon, 12 Oct 2009 14:06:06 -0700 (PDT) In-Reply-To: <9f4oq44d9g.fsf@fencepost.gnu.org> References: <9f4oq44d9g.fsf@fencepost.gnu.org> Date: Mon, 12 Oct 2009 17:06:06 -0400 X-Google-Sender-Auth: b1aa00b173a2145b Message-ID: <1f77704b0910121406x5c5cf1a9x5d6132a30c51ef34@mail.gmail.com> Subject: Re: changes to compilation-mode From: Sam Steingold To: Glenn Morris Cc: 3928@debbugs.gnu.org Content-Type: text/plain; charset=UTF-8 Hi, I fixed this in the CVS. Sorry about the problem. -- Sam Steingold From rgm@gnu.org Mon Oct 12 18:02:44 2009 Received: (at 3928) by emacsbugs.donarmstrong.com; 13 Oct 2009 01:02:44 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=-5.9 required=4.0 tests=AWL,X_DEBBUGS_NO_ACK autolearn=ham version=3.2.5-bugs.debian.org_2005_01_02 Received: from fencepost.gnu.org (fencepost.gnu.org [140.186.70.10]) by rzlab.ucr.edu (8.14.3/8.14.3/Debian-5) with ESMTP id n9D12gCY016945 for <3928@emacsbugs.donarmstrong.com>; Mon, 12 Oct 2009 18:02:44 -0700 Received: from rgm by fencepost.gnu.org with local (Exim 4.67) (envelope-from ) id 1MxVmj-0004si-VV; Mon, 12 Oct 2009 21:02:41 -0400 From: Glenn Morris To: Sam Steingold Cc: 3928@debbugs.gnu.org Subject: Re: changes to compilation-mode References: <9f4oq44d9g.fsf@fencepost.gnu.org> <1f77704b0910121406x5c5cf1a9x5d6132a30c51ef34@mail.gmail.com> X-Spook: Indigo Albania mindwar World Trade Center Watergate X-Ran: RL>"K?yNbvV9k+WdCmqmVrMnp{{3YFT;=YwMU"`4VyE User-Agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sam Steingold wrote: > Hi, I fixed this in the CVS. Thanks. In: (= ?* (aref pat 1)) I guess it is supposed to be `(aref pat 2)'? From sam.steingold@gmail.com Mon Oct 12 19:59:53 2009 Received: (at 3928) by emacsbugs.donarmstrong.com; 13 Oct 2009 02:59:53 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: ** X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=2.5 required=4.0 tests=URIBL_CNKR autolearn=no version=3.2.5-bugs.debian.org_2005_01_02 Received: from mail-gx0-f228.google.com (mail-gx0-f228.google.com [209.85.217.228]) by rzlab.ucr.edu (8.14.3/8.14.3/Debian-5) with ESMTP id n9D2xppW004053 for <3928@emacsbugs.donarmstrong.com>; Mon, 12 Oct 2009 19:59:52 -0700 Received: by gxk28 with SMTP id 28so4145155gxk.9 for <3928@emacsbugs.donarmstrong.com>; Mon, 12 Oct 2009 19:59:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:received:in-reply-to :references:date:x-google-sender-auth:message-id:subject:from:to:cc :content-type; bh=3W/HkylueQpz7xT0uIqjfHSpY+twuyTTZLeFXNjVK7M=; b=KW+NIvusPAyO8x0Q6lW50Z7CKvGZSMCYpMkL1AuN+/RSMi/fOXX5lbWU1fEe3JZDfA Dg0q65NS0lP/2M6mb9GGKKjal6tEhqtdaSLsq3USTcNDwfHuPPdG/gj2qxoqn1GKcrdp M3b7DC/NKbgjvoUZTQVuPx+3+W7vjrYhBMPqY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; b=mLwxW6EuMCytDNfUTVEYPQyIo12l7/4PB5xdNWRDlFn0e1nvQjRXmH/k13Tq2hvEtb MZf2mFXDzD8cLjmDqXLbczOzLPHuwhXTfvkRI+h9OQuIz9eygtj6v/yf5Vqv/c4Rmufn GVvu/erp5P3EZDuCK7GRbmqgDhBt1KLgc6vA0= MIME-Version: 1.0 Sender: sam.steingold@gmail.com Received: by 10.150.43.3 with SMTP id q3mr6173375ybq.73.1255402786150; Mon, 12 Oct 2009 19:59:46 -0700 (PDT) In-Reply-To: References: <9f4oq44d9g.fsf@fencepost.gnu.org> <1f77704b0910121406x5c5cf1a9x5d6132a30c51ef34@mail.gmail.com> Date: Mon, 12 Oct 2009 22:59:46 -0400 X-Google-Sender-Auth: f5be5171ae956b1d Message-ID: <1f77704b0910121959j52e13114t713bccaa56c92022@mail.gmail.com> Subject: Re: changes to compilation-mode From: Sam Steingold To: Glenn Morris Cc: 3928@debbugs.gnu.org Content-Type: text/plain; charset=UTF-8 On Mon, Oct 12, 2009 at 9:02 PM, Glenn Morris wrote: > > (= ?* (aref pat 1)) > > I guess it is supposed to be `(aref pat 2)'? oops. fixed. sorry. -- Sam Steingold From rgm@gnu.org Mon Oct 12 20:40:01 2009 Received: (at 3928-done) by emacsbugs.donarmstrong.com; 13 Oct 2009 03:40:01 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=-3.1 required=4.0 tests=AWL,ONEWORD,URIBL_CNKR, X_DEBBUGS_NO_ACK autolearn=no version=3.2.5-bugs.debian.org_2005_01_02 Received: from fencepost.gnu.org (fencepost.gnu.org [140.186.70.10]) by rzlab.ucr.edu (8.14.3/8.14.3/Debian-5) with ESMTP id n9D3dx49011313 for <3928-done@emacsbugs.donarmstrong.com>; Mon, 12 Oct 2009 20:40:01 -0700 Received: from rgm by fencepost.gnu.org with local (Exim 4.67) (envelope-from ) id 1MxYEw-0005If-Vl; Mon, 12 Oct 2009 23:39:59 -0400 From: Glenn Morris To: 3928-done@debbugs.gnu.org Subject: Re: Bug#3928 References: <9f4oq44d9g.fsf@fencepost.gnu.org> <1f77704b0910121406x5c5cf1a9x5d6132a30c51ef34@mail.gmail.com> <1f77704b0910121959j52e13114t713bccaa56c92022@mail.gmail.com> X-Spook: Taiwan Uzbekistan SSL Firewalls investigation e-bomb X-Ran: qnajTI@|;?dRBozuT (Sam Steingold's message of "Mon, 12 Oct 2009 22:59:46 -0400") Message-ID: User-Agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Fixed by this change: 2009-10-12 Sam Steingold * progmodes/compile.el (compilation-mode-font-lock-keywords): Do not prepend "^ *" to non-anchored patterns, like the perl one (bug#3928). From unknown Mon Jun 23 02:21:25 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Tue, 10 Nov 2009 15:24:12 +0000 User-Agent: Fakemail v42.6.9 # A New Hope # A long time ago, in a galaxy far, far away # something happened. # # Magically this resulted in the following # action being taken, but this fake control # message doesn't tell you why it happened # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator