# HG changeset patch # User Richard M. Stallman # Date 1039296884 0 # Node ID fdd59bb947d8a548b85aa4da209abc82f0565608 # Parent 9f27d033e1a785a2adc6274c0b857dc7cfd7e043 (compilation-enter-directory-regexp-alist) (compilation-leave-directory-regexp-alist): Match byte compiler output. diff -r 9f27d033e1a7 -r fdd59bb947d8 lisp/progmodes/compile.el --- 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.