]> git.eshelyaron.com Git - emacs.git/commitdiff
(compilation-enter-directory-regexp-alist)
authorRichard M. Stallman <rms@gnu.org>
Sat, 7 Dec 2002 21:34:44 +0000 (21:34 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 7 Dec 2002 21:34:44 +0000 (21:34 +0000)
(compilation-leave-directory-regexp-alist): Match byte compiler output.

lisp/progmodes/compile.el

index 5a654870c216b08301a0777cb891cbb18c4f7b46..a85551d20d44163a1a21563dc46f0ffaa691d08b 100644 (file)
@@ -452,6 +452,8 @@ subexpression.")
   '(
     ;; 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 @@ The default value matches lines printed by the `-w' option of GNU Make.")
   '(
     ;; 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.