Mercurial > emacs
changeset 37471:f335708a19f2
(find-lisp-find-dired-filter)
(find-lisp-find-dired-subdirectories, find-lisp-find-dired): Add
autoload cookies. From Richard Y. Kim <ryk@dspwiz.com>.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Wed, 25 Apr 2001 16:18:52 +0000 |
parents | dae24fc64c27 |
children | 9ce4aab7c994 |
files | lisp/find-lisp.el |
diffstat | 1 files changed, 3 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/find-lisp.el Wed Apr 25 15:52:45 2001 +0000 +++ b/lisp/find-lisp.el Wed Apr 25 16:18:52 2001 +0000 @@ -162,6 +162,7 @@ ;; 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 @@ "*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 @@ (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: ")