]> git.eshelyaron.com Git - emacs.git/commitdiff
(top-level): Does not need cl when compiling.
authorGlenn Morris <rgm@gnu.org>
Tue, 29 Apr 2008 07:05:39 +0000 (07:05 +0000)
committerGlenn Morris <rgm@gnu.org>
Tue, 29 Apr 2008 07:05:39 +0000 (07:05 +0000)
Add arch-tag and footer.

lisp/ChangeLog
lisp/find-cmd.el

index 0aa685c3e5aa2343ae4656745fcf1deb52d150d6..daee552d9a3abe22d2699ad5abe948f90a9307dd 100644 (file)
@@ -1,3 +1,7 @@
+2008-04-29  Glenn Morris  <rgm@gnu.org>
+
+       * find-cmd.el (top-level): Does not need cl when compiling.
+
 2008-04-29  Phil Jackson  <phil@shellarchive.co.uk>
 
        * find-cmd.el: New file.
index 0fb25a22fe18d83e719ec2f825eb8cb9ddd4010d..75f9ac3e53d31e199602ee697ea947b05d3b89a5 100644 (file)
@@ -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