Mark Triggs <[EMAIL PROTECTED]> writes: > From a quick analysis it would appear that the only functions/macros > we're using from cl-extra are the hash table functions (gethash, > puthash, make-hash-table). In my emacs (from CVS) these are also > defined in standard elisp
Even in Emacs21, they're builtin functions. Actually, cl-extra defines cl-gethash and cl-puthash in addition. On Emacs21, they're lisp code, and on Emacs22, they're simply (defalias 'cl-gethash 'gethash) (defalias 'cl-puthash 'puthash) I've simply removed the (eval-and-compile 'cl-extra). -- Matthieu
