"Lennart Borgman (gmail)" <[EMAIL PROTECTED]> writes: > Unfortunately color-theme.el brakes things because it does > > (require 'cl) > > instead of the correct > > (eval-when-compile (require 'cl))
That just means all of cl is loaded at run time, rather than just at compile time. I understand the convention is that if the code is only using cl macros, and not cl functions, it should use the latter construct. Using the former construct may be inefficient, but why do you say it is "broken"? -- -- Stephe