summaryrefslogtreecommitdiff
path: root/lisp/find-lisp.el
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2001-04-25 16:22:14 +0000
committerEli Zaretskii <eliz@gnu.org>2001-04-25 16:22:14 +0000
commit4ecdf04d03f440dc653231470111f00fc3b426a0 (patch)
treef9e1d40e3f147e3f595b69756114ead23692f367 /lisp/find-lisp.el
parent1dc64fca5b9e64b79d8839ccc36cdd1c7fb48371 (diff)
downloademacs-4ecdf04d03f440dc653231470111f00fc3b426a0.tar.gz
(find-lisp-find-dired-filter)
(find-lisp-find-dired-subdirectories, find-lisp-find-dired): Add autoload cookies. From Richard Y. Kim <ryk@dspwiz.com>.
Diffstat (limited to 'lisp/find-lisp.el')
-rw-r--r--lisp/find-lisp.el3
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/find-lisp.el b/lisp/find-lisp.el
index c1132243963..b59978a54f4 100644
--- a/lisp/find-lisp.el
+++ b/lisp/find-lisp.el
@@ -162,6 +162,7 @@ It is a function which takes two arguments, the directory and its parent."
;; Find-dired all in Lisp
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+;;;###autoload
(defun find-lisp-find-dired (dir regexp)
"Find files in DIR, matching REGEXP."
(interactive "DFind files in directory: \nsMatching regexp: ")
@@ -173,6 +174,7 @@ It is a function which takes two arguments, the directory and its parent."
"*Find Lisp Dired*")))
;; Just the subdirectories
+;;;###autoload
(defun find-lisp-find-dired-subdirectories (dir)
"Find all subdirectories of DIR."
(interactive "DFind subdirectories of directory: ")
@@ -276,6 +278,7 @@ It is a function which takes two arguments, the directory and its parent."
(goto-char (point-min))
(dired-goto-next-file)))
+;;;###autoload
(defun find-lisp-find-dired-filter (regexp)
"Change the filter on a find-lisp-find-dired buffer to REGEXP."
(interactive "sSet filter to regexp: ")