From e1ebe229b95ef2b2395104ab1c6941efe089e1cb Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Fri, 31 Jan 1997 06:17:06 +0000 Subject: [PATCH] (compilation-enter-directory-regexp) (compilation-leave-directory-regexp): Add .* at beginning. --- 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 ae81921c0af..046ce9631bf 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -272,14 +272,14 @@ You might also use mode hooks to specify it in certain modes, like this: buffer-file-name))))))") (defvar compilation-enter-directory-regexp - ": Entering directory `\\(.*\\)'$" + ".*: Entering directory `\\(.*\\)'$" "Regular expression matching lines that indicate a new current directory. This must contain one \\(, \\) pair around the directory name. The default value matches lines printed by the `-w' option of GNU Make.") (defvar compilation-leave-directory-regexp - ": Leaving directory `\\(.*\\)'$" + ".*: Leaving directory `\\(.*\\)'$" "Regular expression matching lines that indicate restoring current directory. This may contain one \\(, \\) pair around the name of the directory being moved from. If it does not, the last directory entered \(by a -- 2.39.5