aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Ingebrigtsen2019-07-25 18:44:13 +0200
committerLars Ingebrigtsen2019-07-25 18:44:17 +0200
commit9c1ecca333b68b8d11c0acb8a273d71bea8cf505 (patch)
tree436fe5a092cc95e8ff93a385d72c6b93d31a4956
parenta3c5dcf54e88ea90cc338f39fde530b5eb04553f (diff)
downloademacs-9c1ecca333b68b8d11c0acb8a273d71bea8cf505.tar.gz
emacs-9c1ecca333b68b8d11c0acb8a273d71bea8cf505.zip
Fix many-compilations case of compilation-goto-in-progress-buffer
* lisp/progmodes/compile.el (compilation-goto-in-progress-buffer): Fix thinko in initial version of the function in the many-compilations case.
-rw-r--r--lisp/progmodes/compile.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el
index f4750c00590..a7575b5a1a1 100644
--- a/lisp/progmodes/compile.el
+++ b/lisp/progmodes/compile.el
@@ -125,7 +125,10 @@ and a string describing how the process finished.")
125 ((> (length compilation-in-progress) 1) 125 ((> (length compilation-in-progress) 1)
126 (switch-to-buffer (completing-read 126 (switch-to-buffer (completing-read
127 "Several compilation buffers; switch to: " 127 "Several compilation buffers; switch to: "
128 (mapcar #'buffer-name compilation-in-progress) 128 (mapcar
129 (lambda (process)
130 (buffer-name (process-buffer process)))
131 compilation-in-progress)
129 nil t))) 132 nil t)))
130 (compilation-in-progress 133 (compilation-in-progress
131 (switch-to-buffer (process-buffer (car compilation-in-progress)))) 134 (switch-to-buffer (process-buffer (car compilation-in-progress))))