emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debbugs-tracker] bug#15678: closed ([PATCH] compile.el: support GNU Mak


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#15678: closed ([PATCH] compile.el: support GNU Make-4.0 directory quoting)
Date: Wed, 23 Oct 2013 16:27:01 +0000

Your message dated Wed, 23 Oct 2013 12:26:27 -0400
with message-id <address@hidden>
and subject line Re: bug#15678: [PATCH] compile.el: support GNU Make-4.0 
directory quoting
has caused the debbugs.gnu.org bug report #15678,
regarding [PATCH] compile.el: support GNU Make-4.0 directory quoting
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
15678: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=15678
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] compile.el: support GNU Make-4.0 directory quoting Date: Mon, 21 Oct 2013 21:04:00 -0500
GNU Make commit 23c2b99e9d23e726 is part of make-4.0:

  Convert all "`'" quotes to "''" per new GNU Coding Standard guidelines.

This changes the output from

  make: Entering directory `/path/to/src'

to

  make: Entering directory '/path/to/src'

This patch teaches compile.el about the latter.
---
 lisp/progmodes/compile.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el
index 3b86ddc..54f0372 100644
--- a/lisp/progmodes/compile.el
+++ b/lisp/progmodes/compile.el
@@ -513,7 +513,7 @@ listed text properties PROP# are given values VAL# as well."
   "Directory to restore to when doing `recompile'.")
 
 (defvar compilation-directory-matcher
-  '("\\(?:Entering\\|Leavin\\(g\\)\\) directory `\\(.+\\)'$" (2 . 1))
+  '("\\(?:Entering\\|Leavin\\(g\\)\\) directory [`']\\(.+\\)'$" (2 . 1))
   "A list for tracking when directories are entered or left.
 If nil, do not track directories, e.g. if all file names are absolute.  The
 first element is the REGEXP matching these messages.  It can match any number
@@ -526,7 +526,7 @@ directory we were in before the last entering message.  If 
you change this,
 you may also want to change `compilation-page-delimiter'.")
 
 (defvar compilation-page-delimiter
-  "^\\(?:\f\\|.*\\(?:Entering\\|Leaving\\) directory `.+'\n\\)+"
+  "^\\(?:\f\\|.*\\(?:Entering\\|Leaving\\) directory [`'].+'\n\\)+"
   "Value of `page-delimiter' in Compilation mode.")
 
 (defvar compilation-mode-font-lock-keywords
-- 
1.8.4.1




--- End Message ---
--- Begin Message --- Subject: Re: bug#15678: [PATCH] compile.el: support GNU Make-4.0 directory quoting Date: Wed, 23 Oct 2013 12:26:27 -0400 User-agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/)
Version: 24.4

Thanks; applied.


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]