aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1997-01-31 06:17:06 +0000
committerRichard M. Stallman1997-01-31 06:17:06 +0000
commite1ebe229b95ef2b2395104ab1c6941efe089e1cb (patch)
treecc874e17078d80d64738afd9ade05ff038f2da2d
parentae7f67617ae6c38c1456bf6b218828f9f6fbd65c (diff)
downloademacs-e1ebe229b95ef2b2395104ab1c6941efe089e1cb.tar.gz
emacs-e1ebe229b95ef2b2395104ab1c6941efe089e1cb.zip
(compilation-enter-directory-regexp)
(compilation-leave-directory-regexp): Add .* at beginning.
-rw-r--r--lisp/progmodes/compile.el4
1 files 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:
272 buffer-file-name))))))") 272 buffer-file-name))))))")
273 273
274(defvar compilation-enter-directory-regexp 274(defvar compilation-enter-directory-regexp
275 ": Entering directory `\\(.*\\)'$" 275 ".*: Entering directory `\\(.*\\)'$"
276 "Regular expression matching lines that indicate a new current directory. 276 "Regular expression matching lines that indicate a new current directory.
277This must contain one \\(, \\) pair around the directory name. 277This must contain one \\(, \\) pair around the directory name.
278 278
279The default value matches lines printed by the `-w' option of GNU Make.") 279The default value matches lines printed by the `-w' option of GNU Make.")
280 280
281(defvar compilation-leave-directory-regexp 281(defvar compilation-leave-directory-regexp
282 ": Leaving directory `\\(.*\\)'$" 282 ".*: Leaving directory `\\(.*\\)'$"
283 "Regular expression matching lines that indicate restoring current directory. 283 "Regular expression matching lines that indicate restoring current directory.
284This may contain one \\(, \\) pair around the name of the directory 284This may contain one \\(, \\) pair around the name of the directory
285being moved from. If it does not, the last directory entered \(by a 285being moved from. If it does not, the last directory entered \(by a