diff options
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 4 | ||||
-rw-r--r-- | lisp/progmodes/grep.el | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d5b86e7c145..1b0181b63fb 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2005-01-22 David Kastrup <dak@gnu.org> + + * progmodes/grep.el: Add alias `find-grep' for `grep-find'. + 2005-01-22 Eli Zaretskii <eliz@gnu.org> * type-break.el (type-break-mode): Add a test for diff --git a/lisp/progmodes/grep.el b/lisp/progmodes/grep.el index 8efa48aaa48..a3b1ab3abdd 100644 --- a/lisp/progmodes/grep.el +++ b/lisp/progmodes/grep.el @@ -542,6 +542,9 @@ easily repeat a find command." (let ((null-device nil)) ; see grep (grep command-args)))) +;;;###autoload +(defalias 'find-grep 'grep-find) + (defun grep-expand-command-macros (command &optional regexp files dir excl case-fold) "Patch grep COMMAND replacing <D>, etc." (setq command |