diff options
| -rw-r--r-- | lisp/progmodes/compile.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index b4148c59b49..9a7b3eb5c08 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el | |||
| @@ -1168,7 +1168,8 @@ Returns the compilation buffer created." | |||
| 1168 | (if (eq outbuf (current-buffer)) | 1168 | (if (eq outbuf (current-buffer)) |
| 1169 | (goto-char (point-max))) | 1169 | (goto-char (point-max))) |
| 1170 | ;; Pop up the compilation buffer. | 1170 | ;; Pop up the compilation buffer. |
| 1171 | (setq outwin (display-buffer outbuf nil t)) | 1171 | ;; http://lists.gnu.org/archive/html/emacs-devel/2007-11/msg01638.html |
| 1172 | (setq outwin (display-buffer outbuf)) | ||
| 1172 | (with-current-buffer outbuf | 1173 | (with-current-buffer outbuf |
| 1173 | (let ((process-environment | 1174 | (let ((process-environment |
| 1174 | (append | 1175 | (append |