Fix spacemacs//helm-open-buffers-in-windows

Opening more files than available windows, showed:
Symbol’s value as variable is void: cl-return

Fix #12358
This commit is contained in:
Juha Jeronen 2019-05-25 11:46:17 +03:00 committed by duianto
parent 8a4bf9c655
commit b4907d0540
2 changed files with 3 additions and 1 deletions

View File

@ -1515,6 +1515,8 @@ Other:
- Load helm before read-file-name and completing-read
(thanks duianto and thanks Miciah for a more elegant solution)
- Added key binding `sC` for `helm-swoop-clear-cache` (thanks to Yang Qian)
- Fixed =spacemacs//helm-open-buffers-in-windows= when opening more files than
available windows (thanks to Juha Jeronen)
**** HTML
- Added impatient-mode under ~SPC m i~ (thanks to geo7)
- Added =counsel-css= as an =ivy= alternative to =helm-css-scss=

View File

@ -569,7 +569,7 @@ to buffers)."
(cur-win (or (winum-get-number) (winum-get-number (other-window 1))))
(num-buffers-placed 0))
(cl-loop for buffer in buffers do
(when (>= num-buffers-placed num-windows) cl-return)
(when (>= num-buffers-placed num-windows) (cl-return))
(set-window-buffer (winum-get-window-by-number cur-win) buffer)
(setq cur-win (+ 1 (mod cur-win num-windows)))
(incf num-buffers-placed))))