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:
parent
dd6346e00c
commit
87fb1e38dc
@ -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" "\
|
||||
|
@ -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)))
|
||||
|
Loading…
Reference in New Issue
Block a user