From unknown Wed Jun 18 23:07:51 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#37484 <37484@debbugs.gnu.org> To: bug#37484 <37484@debbugs.gnu.org> Subject: Status: [PATCH] Support GNU make error messages in compile mode. Reply-To: bug#37484 <37484@debbugs.gnu.org> Date: Thu, 19 Jun 2025 06:07:51 +0000 retitle 37484 [PATCH] Support GNU make error messages in compile mode. reassign 37484 emacs submitter 37484 Paul Smith severity 37484 normal tag 37484 patch moreinfo thanks From debbugs-submit-bounces@debbugs.gnu.org Sun Sep 22 16:29:20 2019 Received: (at submit) by debbugs.gnu.org; 22 Sep 2019 20:29:20 +0000 Received: from localhost ([127.0.0.1]:34560 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iC8Tw-0005IL-8E for submit@debbugs.gnu.org; Sun, 22 Sep 2019 16:29:20 -0400 Received: from lists.gnu.org ([209.51.188.17]:54159) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iC8Tv-0005IF-0O for submit@debbugs.gnu.org; Sun, 22 Sep 2019 16:29:19 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:47896) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iC8Tu-0006hw-0H for bug-gnu-emacs@gnu.org; Sun, 22 Sep 2019 16:29:18 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-1.0 required=5.0 tests=ALL_TRUSTED,BAYES_40, URIBL_BLOCKED autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:470:142:3::e]:36361) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1iC8Ts-0007Gi-4A for bug-gnu-emacs@gnu.org; Sun, 22 Sep 2019 16:29:17 -0400 Received: from pool-98-118-0-140.bstnma.fios.verizon.net ([98.118.0.140]:45040 helo=homebase.bo2.nuodb.com) by fencepost.gnu.org with esmtpsa (TLS1.2:DHE_RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1iC8Tr-00013m-Oh for bug-gnu-emacs@gnu.org; Sun, 22 Sep 2019 16:29:15 -0400 From: Paul Smith To: bug-gnu-emacs@gnu.org Subject: [PATCH] Support GNU make error messages in compile mode. Date: Sun, 22 Sep 2019 16:28:18 -0400 Message-Id: <20190922202817.28319-1-psmith@gnu.org> X-Mailer: git-send-email 2.18.0 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) * lisp/progmodes/compile.el (compilation-error-regexp-alist-alist): Match GNU make error messages. * test/lisp/progmodes/compile-tests.el (compile-tests--test-regexps-data): Test GNU make error message matching. --- lisp/progmodes/compile.el | 6 ++++++ test/lisp/progmodes/compile-tests.el | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index f0b34c702c..a98aa0c8e5 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -274,6 +274,12 @@ of[ \t]+\"?\\([a-zA-Z]?:?[^\":\n]+\\)\"?:" 3 2 nil (1)) (ruby-Test::Unit "^[\t ]*\\[\\([^(].*\\):\\([1-9][0-9]*\\)\\(\\]\\)?:in " 1 2) + (gmake + ;; Set GNU make error messages as INFO level. + ;; It starts with the name of the make program which is variable, + ;; so don't try to match it. + ": \\*\\*\\* \\[\\(\\(.+?\\):\\([0-9]+\\): .+\\)\\]" 2 3 nil 0 1) + (gnu ;; The first line matches the program name for diff --git a/test/lisp/progmodes/compile-tests.el b/test/lisp/progmodes/compile-tests.el index 0d4f7f2ff2..61e1cd110d 100644 --- a/test/lisp/progmodes/compile-tests.el +++ b/test/lisp/progmodes/compile-tests.el @@ -180,6 +180,12 @@ 1 0 31 "/usr/include/c++/3.3/backward/iostream.h") (" from test_clt.cc:1:" 1 nil 1 "test_clt.cc") + ;; gmake + ("make: *** [Makefile:20: all] Error 2" 5 nil 20 "Makefile" 0) + ("make[4]: *** [sub/make.mk:19: all] Error 127" 8 nil 19 "sub/make.mk" 0) + ("gmake[4]: *** [sub/make.mk:19: all] Error 2" 9 nil 19 "sub/make.mk" 0) + ("gmake-4.3[4]: *** [make.mk:1119: all] Error 2" 13 nil 1119 "make.mk" 0) + ("Make-4.3: *** [make.INC:1119: dir/all] Error 2" 9 nil 1119 "make.INC" 0) ;; gnu ("foo.c:8: message" 1 nil 8 "foo.c") ("../foo.c:8: W: message" 1 nil 8 "../foo.c") -- 2.18.0 From debbugs-submit-bounces@debbugs.gnu.org Mon Sep 23 18:29:15 2019 Received: (at 37484) by debbugs.gnu.org; 23 Sep 2019 22:29:15 +0000 Received: from localhost ([127.0.0.1]:37245 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iCWpX-00089D-13 for submit@debbugs.gnu.org; Mon, 23 Sep 2019 18:29:15 -0400 Received: from zimbra.cs.ucla.edu ([131.179.128.68]:35108) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iCWpU-00088j-Nh for 37484@debbugs.gnu.org; Mon, 23 Sep 2019 18:29:13 -0400 Received: from localhost (localhost [127.0.0.1]) by zimbra.cs.ucla.edu (Postfix) with ESMTP id 06F2C160203; Mon, 23 Sep 2019 15:29:07 -0700 (PDT) Received: from zimbra.cs.ucla.edu ([127.0.0.1]) by localhost (zimbra.cs.ucla.edu [127.0.0.1]) (amavisd-new, port 10032) with ESMTP id ldJn_PlvLdH0; Mon, 23 Sep 2019 15:29:06 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by zimbra.cs.ucla.edu (Postfix) with ESMTP id 3DA08160228; Mon, 23 Sep 2019 15:29:06 -0700 (PDT) X-Virus-Scanned: amavisd-new at zimbra.cs.ucla.edu Received: from zimbra.cs.ucla.edu ([127.0.0.1]) by localhost (zimbra.cs.ucla.edu [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id LJ0e5j6wgI11; Mon, 23 Sep 2019 15:29:06 -0700 (PDT) Received: from Penguin.CS.UCLA.EDU (Penguin.CS.UCLA.EDU [131.179.64.200]) by zimbra.cs.ucla.edu (Postfix) with ESMTPSA id 22ED0160203; Mon, 23 Sep 2019 15:29:06 -0700 (PDT) To: Paul Smith From: Paul Eggert Subject: [PATCH] Support GNU make error messages in compile mode. Organization: UCLA Computer Science Department Message-ID: <3660468d-e513-6aea-8d17-9e20035b76da@cs.ucla.edu> Date: Mon, 23 Sep 2019 15:29:05 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.1.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 37484 Cc: 37484@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Thanks, but when I tried that patch against GNU Emacs master, 'make check' failed with the diagnostics at the end of this email. Could you please look into that? Also, please note the following comment in compile.el, which may be an easier way for you to run the tests: ;; If you make any changes to `compilation-error-regexp-alist-alist', ;; be sure to run the ERT test in test/lisp/progmodes/compile-tests.el. ;; emacs -batch -l compile-tests.el -f ert-run-tests-batch-and-exit Test compile-test-error-regexps backtrace: signal(ert-test-failed (((should msg) :form msg :value nil))) ert-fail(((should msg) :form msg :value nil)) compile--test-error-line(("make: *** [Makefile:20: all] Error 2" 5 n mapc(compile--test-error-line (("Error on line 3 of t.f: Execution e #f(compiled-function () #)() ert--run-test-internal(#s(ert--test-execution-info :test #s(ert-test ert-run-test(#s(ert-test :name compile-test-error-regexps :documenta ert-run-or-rerun-test(#s(ert--stats :selector ... :tests ... :test-m ert-run-tests((not (or (tag :expensive-test) (tag :unstable))) #f(co ert-run-tests-batch((not (or (tag :expensive-test) (tag :unstable))) ert-run-tests-batch-and-exit((not (or (tag :expensive-test) (tag :un eval((ert-run-tests-batch-and-exit '(not (or (tag :expensive-test) ( command-line-1(("-L" ":." "-l" "ert" "-l" "lisp/progmodes/compile-te command-line() normal-top-level() Test compile-test-error-regexps condition: (ert-test-failed ((should msg) :form msg :value nil)) FAILED 1/2 compile-test-error-regexps (0.062248 sec) From debbugs-submit-bounces@debbugs.gnu.org Tue Sep 24 15:28:50 2019 Received: (at control) by debbugs.gnu.org; 24 Sep 2019 19:28:50 +0000 Received: from localhost ([127.0.0.1]:40175 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iCqUU-0002XC-I6 for submit@debbugs.gnu.org; Tue, 24 Sep 2019 15:28:50 -0400 Received: from zimbra.cs.ucla.edu ([131.179.128.68]:57416) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iCqUS-0002Ww-He for control@debbugs.gnu.org; Tue, 24 Sep 2019 15:28:49 -0400 Received: from localhost (localhost [127.0.0.1]) by zimbra.cs.ucla.edu (Postfix) with ESMTP id 457E21601BF for ; Tue, 24 Sep 2019 12:28:42 -0700 (PDT) Received: from zimbra.cs.ucla.edu ([127.0.0.1]) by localhost (zimbra.cs.ucla.edu [127.0.0.1]) (amavisd-new, port 10032) with ESMTP id 9kKG4I85bqCu for ; Tue, 24 Sep 2019 12:28:41 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by zimbra.cs.ucla.edu (Postfix) with ESMTP id 72B0D16022F for ; Tue, 24 Sep 2019 12:28:41 -0700 (PDT) X-Virus-Scanned: amavisd-new at zimbra.cs.ucla.edu Received: from zimbra.cs.ucla.edu ([127.0.0.1]) by localhost (zimbra.cs.ucla.edu [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id N6aP-MxwN2e3 for ; Tue, 24 Sep 2019 12:28:41 -0700 (PDT) Received: from Penguin.CS.UCLA.EDU (Penguin.CS.UCLA.EDU [131.179.64.200]) by zimbra.cs.ucla.edu (Postfix) with ESMTPSA id 579491601BF for ; Tue, 24 Sep 2019 12:28:41 -0700 (PDT) To: GNU bug control From: Paul Eggert Subject: more info needed on some bugs Organization: UCLA Computer Science Department Message-ID: <37dbe424-d523-9e5b-3999-5bc627bdcdb9@cs.ucla.edu> Date: Tue, 24 Sep 2019 12:28:41 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.1.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) tags 37484 + moreinfo From debbugs-submit-bounces@debbugs.gnu.org Sat Oct 05 09:45:01 2019 Received: (at 37484) by debbugs.gnu.org; 5 Oct 2019 13:45:01 +0000 Received: from localhost ([127.0.0.1]:43939 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iGkMm-0004Y4-Ij for submit@debbugs.gnu.org; Sat, 05 Oct 2019 09:45:01 -0400 Received: from eggs.gnu.org ([209.51.188.92]:51352) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iGkMk-0004Xs-Qt for 37484@debbugs.gnu.org; Sat, 05 Oct 2019 09:44:59 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:40155) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1iGkMf-0006xL-LH; Sat, 05 Oct 2019 09:44:53 -0400 Received: from pool-98-118-0-140.bstnma.fios.verizon.net ([98.118.0.140]:59754 helo=homebase.home) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1iGkMf-00011o-Ae; Sat, 05 Oct 2019 09:44:53 -0400 Message-ID: Subject: Re: [PATCH] Support GNU make error messages in compile mode. From: Paul Smith To: Paul Eggert Date: Sat, 05 Oct 2019 09:44:52 -0400 In-Reply-To: <3660468d-e513-6aea-8d17-9e20035b76da@cs.ucla.edu> References: <3660468d-e513-6aea-8d17-9e20035b76da@cs.ucla.edu> Organization: GNU's Not UNIX! Content-Type: text/plain; charset="UTF-8" User-Agent: Evolution 3.32.1-2 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 37484 Cc: 37484@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: psmith@gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) On Mon, 2019-09-23 at 15:29 -0700, Paul Eggert wrote: > Thanks, but when I tried that patch against GNU Emacs master, 'make > check' failed with the diagnostics at the end of this email. Could you > please look into that? Also, please note the following comment in > compile.el, which may be an easier way for you to run the tests: Oops. The meaning of "POS" in the tests is not clearly defined (enough for me to understand it). Required a bit of trial and error. I sent an update with git send-email... It seems to have created a new bug 37632@debbugs.gnu.org though. I'm not sure how to re-send a patch so that it's associated with an existing bug? I guess I should have included the old bug as a CC or something... Sorry for the confusion and required bug wrangling :( From debbugs-submit-bounces@debbugs.gnu.org Sat Oct 05 09:58:34 2019 Received: (at control) by debbugs.gnu.org; 5 Oct 2019 13:58:34 +0000 Received: from localhost ([127.0.0.1]:44964 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iGkZt-000586-UY for submit@debbugs.gnu.org; Sat, 05 Oct 2019 09:58:34 -0400 Received: from eggs.gnu.org ([209.51.188.92]:53128) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iGkZr-00057r-IP for control@debbugs.gnu.org; Sat, 05 Oct 2019 09:58:32 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:40409) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1iGkZm-00061b-9a for control@debbugs.gnu.org; Sat, 05 Oct 2019 09:58:26 -0400 Received: from [176.228.60.248] (port=4355 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1iGkZl-00062E-0F for control@debbugs.gnu.org; Sat, 05 Oct 2019 09:58:25 -0400 Date: Sat, 05 Oct 2019 16:58:12 +0300 Message-Id: <83bluv47m3.fsf@gnu.org> From: Eli Zaretskii To: control@debbugs.gnu.org In-reply-to: <20191005133811.12302-1-psmith@gnu.org> (message from Paul Smith on Sat, 5 Oct 2019 09:38:11 -0400) Subject: Re: bug#37632: [PATCH] Support GNU make error messages in compile mode. References: <20191005133811.12302-1-psmith@gnu.org> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) merge 37632 37484 thanks From debbugs-submit-bounces@debbugs.gnu.org Sat Oct 05 09:59:21 2019 Received: (at 37484) by debbugs.gnu.org; 5 Oct 2019 13:59:21 +0000 Received: from localhost ([127.0.0.1]:44968 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iGkaf-00059m-9t for submit@debbugs.gnu.org; Sat, 05 Oct 2019 09:59:21 -0400 Received: from eggs.gnu.org ([209.51.188.92]:53227) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iGkad-00059Z-Ve for 37484@debbugs.gnu.org; Sat, 05 Oct 2019 09:59:20 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:40422) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1iGkaX-0006tG-2r; Sat, 05 Oct 2019 09:59:13 -0400 Received: from [176.228.60.248] (port=4406 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1iGkaW-0000Q4-6e; Sat, 05 Oct 2019 09:59:12 -0400 Date: Sat, 05 Oct 2019 16:59:00 +0300 Message-Id: <83a7af47kr.fsf@gnu.org> From: Eli Zaretskii To: psmith@gnu.org In-reply-to: (message from Paul Smith on Sat, 05 Oct 2019 09:44:52 -0400) Subject: Re: bug#37484: [PATCH] Support GNU make error messages in compile mode. References: <3660468d-e513-6aea-8d17-9e20035b76da@cs.ucla.edu> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 37484 Cc: eggert@cs.ucla.edu, 37484@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) > From: Paul Smith > Date: Sat, 05 Oct 2019 09:44:52 -0400 > Cc: 37484@debbugs.gnu.org > > I sent an update with git send-email... It seems to have created a new > bug 37632@debbugs.gnu.org though. I'm not sure how to re-send a patch > so that it's associated with an existing bug? I guess I should have > included the old bug as a CC or something... Yes. No worries, I merged the two bugs. From debbugs-submit-bounces@debbugs.gnu.org Sat Oct 05 15:34:47 2019 Received: (at 37484-done) by debbugs.gnu.org; 5 Oct 2019 19:34:47 +0000 Received: from localhost ([127.0.0.1]:45282 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iGppH-0006vQ-51 for submit@debbugs.gnu.org; Sat, 05 Oct 2019 15:34:47 -0400 Received: from zimbra.cs.ucla.edu ([131.179.128.68]:54140) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iGppE-0006vB-7m for 37484-done@debbugs.gnu.org; Sat, 05 Oct 2019 15:34:45 -0400 Received: from localhost (localhost [127.0.0.1]) by zimbra.cs.ucla.edu (Postfix) with ESMTP id 65DE31605B7; Sat, 5 Oct 2019 12:34:38 -0700 (PDT) Received: from zimbra.cs.ucla.edu ([127.0.0.1]) by localhost (zimbra.cs.ucla.edu [127.0.0.1]) (amavisd-new, port 10032) with ESMTP id 4W9ON9iY-bhT; Sat, 5 Oct 2019 12:34:37 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by zimbra.cs.ucla.edu (Postfix) with ESMTP id A3A2F1605B9; Sat, 5 Oct 2019 12:34:37 -0700 (PDT) X-Virus-Scanned: amavisd-new at zimbra.cs.ucla.edu Received: from zimbra.cs.ucla.edu ([127.0.0.1]) by localhost (zimbra.cs.ucla.edu [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id bxRSFWjMXeEJ; Sat, 5 Oct 2019 12:34:37 -0700 (PDT) Received: from [192.168.1.9] (cpe-23-242-74-103.socal.res.rr.com [23.242.74.103]) by zimbra.cs.ucla.edu (Postfix) with ESMTPSA id 7EB851605B7; Sat, 5 Oct 2019 12:34:37 -0700 (PDT) Subject: Re: [PATCH] Support GNU make error messages in compile mode. To: Paul Smith References: <3660468d-e513-6aea-8d17-9e20035b76da@cs.ucla.edu> From: Paul Eggert Organization: UCLA Computer Science Department Message-ID: Date: Sat, 5 Oct 2019 12:34:37 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.8.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 37484-done Cc: 37484-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Thanks for the updated patch. 'make check' worked for me, and I installed it into the Emacs master patch and am closing the bug report. From unknown Wed Jun 18 23:07:51 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sun, 03 Nov 2019 12:24:05 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator