emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Emacs-diffs] master 87fb1e3: Fix winner in cl-lib not loaded case


From: Stefan Monnier
Subject: Re: [Emacs-diffs] master 87fb1e3: Fix winner in cl-lib not loaded case
Date: Fri, 02 Oct 2015 09:01:43 -0400
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/25.0.50 (gnu/linux)

> -        (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))

Not sure exactly what was your motivation, for fixing it this way, but
just in case: another acceptable fix was to remove the
eval-when-compile around (require 'cl-lib).


        Stefan



reply via email to

[Prev in Thread] Current Thread [Next in Thread]