From: Glenn Morris Date: Tue, 29 Apr 2008 07:05:39 +0000 (+0000) Subject: (top-level): Does not need cl when compiling. X-Git-Tag: emacs-pretest-23.0.90~5951 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5bd8042b82155978a3867169c886cc750d0be5b0;p=emacs.git (top-level): Does not need cl when compiling. Add arch-tag and footer. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0aa685c3e5a..daee552d9a3 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2008-04-29 Glenn Morris + + * find-cmd.el (top-level): Does not need cl when compiling. + 2008-04-29 Phil Jackson * find-cmd.el: New file. diff --git a/lisp/find-cmd.el b/lisp/find-cmd.el index 0fb25a22fe1..75f9ac3e53d 100644 --- a/lisp/find-cmd.el +++ b/lisp/find-cmd.el @@ -39,7 +39,7 @@ ;; -or -name '*.pm' -or -name '*.t' \\) -or -mtime '+1' \\) -and \\( ;; -fstype 'nfs' -or -fstype 'ufs' \\) \\)" -(eval-when-compile (require 'cl)) +;;; Code: (defconst find-constituents '((and . find-and) @@ -239,3 +239,6 @@ them into valid switches. The result is -and(ed) together." (error "Sorry I don't know how to handle '%s'" (car form)))))))) (provide 'find-cmd) + +;; arch-tag: 9687fd9e-4e90-4022-864a-f904526e2046 +;;; find-cmd.el ends here