diff options
| author | Richard M. Stallman | 2002-12-07 21:34:44 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2002-12-07 21:34:44 +0000 |
| commit | 3b5fb045df03e47e118f76d27fba67bce944208a (patch) | |
| tree | c66b7c9bcf269eefe9ba096a6713fd1d57beffbf | |
| parent | b69a33744ae05b855194dc4091c2dda54e5b903c (diff) | |
| download | emacs-3b5fb045df03e47e118f76d27fba67bce944208a.tar.gz emacs-3b5fb045df03e47e118f76d27fba67bce944208a.zip | |
(compilation-enter-directory-regexp-alist)
(compilation-leave-directory-regexp-alist): Match byte compiler output.
| -rw-r--r-- | lisp/progmodes/compile.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 5a654870c21..a85551d20d4 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el | |||
| @@ -452,6 +452,8 @@ subexpression.") | |||
| 452 | '( | 452 | '( |
| 453 | ;; Matches lines printed by the `-w' option of GNU Make. | 453 | ;; Matches lines printed by the `-w' option of GNU Make. |
| 454 | (".*: Entering directory `\\(.*\\)'$" 1) | 454 | (".*: Entering directory `\\(.*\\)'$" 1) |
| 455 | ;; Matches lines made by Emacs byte compiler. | ||
| 456 | ("^Entering directory `\\(.*\\)'$" 1) | ||
| 455 | ) | 457 | ) |
| 456 | "Alist specifying how to match lines that indicate a new current directory. | 458 | "Alist specifying how to match lines that indicate a new current directory. |
| 457 | Note that the match is done at the beginning of lines. | 459 | Note that the match is done at the beginning of lines. |
| @@ -464,6 +466,8 @@ The default value matches lines printed by the `-w' option of GNU Make.") | |||
| 464 | '( | 466 | '( |
| 465 | ;; Matches lines printed by the `-w' option of GNU Make. | 467 | ;; Matches lines printed by the `-w' option of GNU Make. |
| 466 | (".*: Leaving directory `\\(.*\\)'$" 1) | 468 | (".*: Leaving directory `\\(.*\\)'$" 1) |
| 469 | ;; Matches lines made by Emacs byte compiler. | ||
| 470 | ("^Leaving directory `\\(.*\\)'$" 1) | ||
| 467 | ) | 471 | ) |
| 468 | "Alist specifying how to match lines that indicate restoring current directory. | 472 | "Alist specifying how to match lines that indicate restoring current directory. |
| 469 | Note that the match is done at the beginning of lines. | 473 | Note that the match is done at the beginning of lines. |