diff options
| author | Richard M. Stallman | 1997-01-31 06:17:06 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-01-31 06:17:06 +0000 |
| commit | e1ebe229b95ef2b2395104ab1c6941efe089e1cb (patch) | |
| tree | cc874e17078d80d64738afd9ade05ff038f2da2d | |
| parent | ae7f67617ae6c38c1456bf6b218828f9f6fbd65c (diff) | |
| download | emacs-e1ebe229b95ef2b2395104ab1c6941efe089e1cb.tar.gz emacs-e1ebe229b95ef2b2395104ab1c6941efe089e1cb.zip | |
(compilation-enter-directory-regexp)
(compilation-leave-directory-regexp): Add .* at beginning.
| -rw-r--r-- | lisp/progmodes/compile.el | 4 |
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. |
| 277 | This must contain one \\(, \\) pair around the directory name. | 277 | This must contain one \\(, \\) pair around the directory name. |
| 278 | 278 | ||
| 279 | The default value matches lines printed by the `-w' option of GNU Make.") | 279 | The 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. |
| 284 | This may contain one \\(, \\) pair around the name of the directory | 284 | This may contain one \\(, \\) pair around the name of the directory |
| 285 | being moved from. If it does not, the last directory entered \(by a | 285 | being moved from. If it does not, the last directory entered \(by a |