diff options
| -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 |