diff options
author | Glenn Morris <rgm@gnu.org> | 2008-04-29 07:05:39 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2008-04-29 07:05:39 +0000 |
commit | 5bd8042b82155978a3867169c886cc750d0be5b0 (patch) | |
tree | 7265939063a55dc7224e271f9fe9a5984e1a7855 /lisp/find-cmd.el | |
parent | ae2a7459ff9d86b5fd4abd7818df546c645cd63e (diff) | |
download | emacs-5bd8042b82155978a3867169c886cc750d0be5b0.tar.gz |
(top-level): Does not need cl when compiling.
Add arch-tag and footer.
Diffstat (limited to 'lisp/find-cmd.el')
-rw-r--r-- | lisp/find-cmd.el | 5 |
1 files changed, 4 insertions, 1 deletions
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 |