]> git.eshelyaron.com Git - emacs.git/commitdiff
(find-lisp-find-dired-filter)
authorEli Zaretskii <eliz@gnu.org>
Wed, 25 Apr 2001 16:22:14 +0000 (16:22 +0000)
committerEli Zaretskii <eliz@gnu.org>
Wed, 25 Apr 2001 16:22:14 +0000 (16:22 +0000)
(find-lisp-find-dired-subdirectories, find-lisp-find-dired): Add
autoload cookies.  From Richard Y. Kim <ryk@dspwiz.com>.

lisp/ChangeLog
lisp/find-lisp.el

index 8731007e9904a5172c028c777604b412888aa94d..a2e7b8fe1a6e576db97e84bba4de844968fcc994 100644 (file)
@@ -1,3 +1,9 @@
+2001-04-25  Eli Zaretskii  <eliz@is.elta.co.il>
+
+       * find-lisp.el (find-lisp-find-dired-filter)
+       (find-lisp-find-dired-subdirectories, find-lisp-find-dired): Add
+       autoload cookies.  From Richard Y. Kim <ryk@dspwiz.com>.
+
 2001-04-25  Stefan Monnier  <monnier@cs.yale.edu>
 
        * progmodes/make-mode.el (makefile-font-lock-keywords):
index c11322439637fa12383356a01f2312d76de6ed6f..b59978a54f456822e70f51e01c2dd7458a687ad3 100644 (file)
@@ -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: ")