diff options
| author | Eli Zaretskii | 2001-04-25 16:22:14 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2001-04-25 16:22:14 +0000 |
| commit | 4ecdf04d03f440dc653231470111f00fc3b426a0 (patch) | |
| tree | f9e1d40e3f147e3f595b69756114ead23692f367 | |
| parent | 1dc64fca5b9e64b79d8839ccc36cdd1c7fb48371 (diff) | |
| download | emacs-4ecdf04d03f440dc653231470111f00fc3b426a0.tar.gz emacs-4ecdf04d03f440dc653231470111f00fc3b426a0.zip | |
(find-lisp-find-dired-filter)
(find-lisp-find-dired-subdirectories, find-lisp-find-dired): Add
autoload cookies. From Richard Y. Kim <ryk@dspwiz.com>.
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/find-lisp.el | 3 |
2 files changed, 9 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 8731007e990..a2e7b8fe1a6 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2001-04-25 Eli Zaretskii <eliz@is.elta.co.il> | ||
| 2 | |||
| 3 | * find-lisp.el (find-lisp-find-dired-filter) | ||
| 4 | (find-lisp-find-dired-subdirectories, find-lisp-find-dired): Add | ||
| 5 | autoload cookies. From Richard Y. Kim <ryk@dspwiz.com>. | ||
| 6 | |||
| 1 | 2001-04-25 Stefan Monnier <monnier@cs.yale.edu> | 7 | 2001-04-25 Stefan Monnier <monnier@cs.yale.edu> |
| 2 | 8 | ||
| 3 | * progmodes/make-mode.el (makefile-font-lock-keywords): | 9 | * progmodes/make-mode.el (makefile-font-lock-keywords): |
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." | |||
| 162 | ;; Find-dired all in Lisp | 162 | ;; Find-dired all in Lisp |
| 163 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 163 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
| 164 | 164 | ||
| 165 | ;;;###autoload | ||
| 165 | (defun find-lisp-find-dired (dir regexp) | 166 | (defun find-lisp-find-dired (dir regexp) |
| 166 | "Find files in DIR, matching REGEXP." | 167 | "Find files in DIR, matching REGEXP." |
| 167 | (interactive "DFind files in directory: \nsMatching regexp: ") | 168 | (interactive "DFind files in directory: \nsMatching regexp: ") |
| @@ -173,6 +174,7 @@ It is a function which takes two arguments, the directory and its parent." | |||
| 173 | "*Find Lisp Dired*"))) | 174 | "*Find Lisp Dired*"))) |
| 174 | 175 | ||
| 175 | ;; Just the subdirectories | 176 | ;; Just the subdirectories |
| 177 | ;;;###autoload | ||
| 176 | (defun find-lisp-find-dired-subdirectories (dir) | 178 | (defun find-lisp-find-dired-subdirectories (dir) |
| 177 | "Find all subdirectories of DIR." | 179 | "Find all subdirectories of DIR." |
| 178 | (interactive "DFind subdirectories of directory: ") | 180 | (interactive "DFind subdirectories of directory: ") |
| @@ -276,6 +278,7 @@ It is a function which takes two arguments, the directory and its parent." | |||
| 276 | (goto-char (point-min)) | 278 | (goto-char (point-min)) |
| 277 | (dired-goto-next-file))) | 279 | (dired-goto-next-file))) |
| 278 | 280 | ||
| 281 | ;;;###autoload | ||
| 279 | (defun find-lisp-find-dired-filter (regexp) | 282 | (defun find-lisp-find-dired-filter (regexp) |
| 280 | "Change the filter on a find-lisp-find-dired buffer to REGEXP." | 283 | "Change the filter on a find-lisp-find-dired buffer to REGEXP." |
| 281 | (interactive "sSet filter to regexp: ") | 284 | (interactive "sSet filter to regexp: ") |