diff options
| author | Gerd Moellmann | 2000-04-03 21:20:05 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-04-03 21:20:05 +0000 |
| commit | 92d8844ebed3a174abad28bceede2a45fced32d5 (patch) | |
| tree | ff6428df75c72ba6d063e52c3cf387a656925635 | |
| parent | 6460c4009c70b6b15ff60d2afd33736df1254efb (diff) | |
| download | emacs-92d8844ebed3a174abad28bceede2a45fced32d5.tar.gz emacs-92d8844ebed3a174abad28bceede2a45fced32d5.zip | |
(compile-internal): Display the compilation
buffer in a different frame, if it's already displayed there.
| -rw-r--r-- | lisp/progmodes/compile.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index b3321baba99..db6be787c57 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el | |||
| @@ -764,7 +764,7 @@ Returns the compilation buffer created." | |||
| 764 | (if (eq outbuf (current-buffer)) | 764 | (if (eq outbuf (current-buffer)) |
| 765 | (goto-char (point-max))) | 765 | (goto-char (point-max))) |
| 766 | ;; Pop up the compilation buffer. | 766 | ;; Pop up the compilation buffer. |
| 767 | (setq outwin (display-buffer outbuf)) | 767 | (setq outwin (display-buffer outbuf nil t)) |
| 768 | (save-excursion | 768 | (save-excursion |
| 769 | (set-buffer outbuf) | 769 | (set-buffer outbuf) |
| 770 | (compilation-mode name-of-mode) | 770 | (compilation-mode name-of-mode) |