changeset 48721:fdd59bb947d8

(compilation-enter-directory-regexp-alist) (compilation-leave-directory-regexp-alist): Match byte compiler output.
author Richard M. Stallman <rms@gnu.org>
date Sat, 07 Dec 2002 21:34:44 +0000
parents 9f27d033e1a7
children 6cea9f00471e
files lisp/progmodes/compile.el
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/progmodes/compile.el	Sat Dec 07 21:34:00 2002 +0000
+++ b/lisp/progmodes/compile.el	Sat Dec 07 21:34:44 2002 +0000
@@ -452,6 +452,8 @@
   '(
     ;; Matches lines printed by the `-w' option of GNU Make.
     (".*: Entering directory `\\(.*\\)'$" 1)
+    ;; Matches lines made by Emacs byte compiler.
+    ("^Entering directory `\\(.*\\)'$" 1)
     )
   "Alist specifying how to match lines that indicate a new current directory.
 Note that the match is done at the beginning of lines.
@@ -464,6 +466,8 @@
   '(
     ;; Matches lines printed by the `-w' option of GNU Make.
     (".*: Leaving directory `\\(.*\\)'$" 1)
+    ;; Matches lines made by Emacs byte compiler.
+    ("^Leaving directory `\\(.*\\)'$" 1)
     )
 "Alist specifying how to match lines that indicate restoring current directory.
 Note that the match is done at the beginning of lines.