1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-22 07:09:54 +00:00

Fix winner in cl-lib not loaded case

* lisp/winner.el (winner-change-fun): Don't use cl-lib functions
without requiring CL
This commit is contained in:
Daniel Colascione 2015-10-01 22:10:53 -07:00
parent dd6346e00c
commit 87fb1e38dc
2 changed files with 3 additions and 2 deletions

View File

@ -2446,7 +2446,7 @@ of ENTRY-LIST is a list of cons cells (\"MACRONAME\" . LEVEL). See
;;;***
;;;### (autoloads nil "reftex-cite" "reftex-cite.el" "43a3f05c024aee5b7708420f74266933")
;;;### (autoloads nil "reftex-cite" "reftex-cite.el" "751df6ee674ea533b755e8cda4ad1cf8")
;;; Generated autoloads from reftex-cite.el
(autoload 'reftex-default-bibliography "reftex-cite" "\

View File

@ -180,7 +180,8 @@ You may want to include buffer names such as *Help*, *Apropos*,
;; Cull dead frames.
(setq winner-modified-list
(cl-remove-if-not 'frame-live-p winner-modified-list))
(cl-loop for frame in winner-modified-list
if (frame-live-p frame) collect frame))
(unless (or (memq (selected-frame) winner-modified-list)
(/= 0 (minibuffer-depth)))