Stephen Leake <stephen_le...@stephe-leake.org> writes: > Emacs 23.1 is released; I've switched to using it. > > The byte-compiler now warns about using the Common Lisp runtime. > Compiling DVC gets many warnings, mostly in xmtn.
(I don't consider these very important, but it's good to follow the guidelines ...) > I will work on eliminating CL runtime from the xmtn packages; that > will take a lot of work. Most of the 'cl things are actually macros, so first thing you can do it to replace (eval-and-compile (require 'cl)) by just (eval-when-compile ...). Then, the warnings I get are : Warning: Function `gensym' from cl package called at runtime Warning: Function `subseq' from cl package called at runtime Warning: Function `gensym' from cl package called at runtime Warning: Function `some' from cl package called at runtime gensym => see `dvc-gensym', they should be similar. Thanks for your work, -- Matthieu Moy http://www-verimag.imag.fr/~moy/ _______________________________________________ Dvc-dev mailing list Dvc-dev@gna.org https://mail.gna.org/listinfo/dvc-dev