emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/dired-aux.el,v


From: Juri Linkov
Subject: [Emacs-diffs] Changes to emacs/lisp/dired-aux.el,v
Date: Mon, 28 Jul 2008 14:29:00 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Juri Linkov <jurta>     08/07/28 14:29:00

Index: dired-aux.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/dired-aux.el,v
retrieving revision 1.172
retrieving revision 1.173
diff -u -b -r1.172 -r1.173
--- dired-aux.el        24 Jul 2008 16:16:43 -0000      1.172
+++ dired-aux.el        28 Jul 2008 14:28:59 -0000      1.173
@@ -2282,6 +2282,20 @@
 ;; Functions for searching in tags style among marked files.
 
 ;;;###autoload
+(defun dired-do-isearch ()
+  "Search for a string through all marked files using Isearch."
+  (interactive)
+  (multi-isearch-files
+   (dired-get-marked-files nil nil 'dired-nondirectory-p)))
+
+;;;###autoload
+(defun dired-do-isearch-regexp ()
+  "Search for a regexp through all marked files using Isearch."
+  (interactive)
+  (multi-isearch-files-regexp
+   (dired-get-marked-files nil nil 'dired-nondirectory-p)))
+
+;;;###autoload
 (defun dired-do-search (regexp)
   "Search through all marked files for a match for REGEXP.
 Stops when a match is found.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]