comparison lisp/dired-aux.el @ 42417:a8cf90908008

(dired-do-query-replace-regexp): Doc fix.
author Richard M. Stallman <rms@gnu.org>
date Sun, 30 Dec 2001 00:53:22 +0000
parents 7308bbc423d5
children 24e0ac83a078
comparison
equal deleted inserted replaced
42416:36dc6c5f8b28 42417:a8cf90908008
2002 2002
2003 ;;;###autoload 2003 ;;;###autoload
2004 (defun dired-do-query-replace-regexp (from to &optional delimited) 2004 (defun dired-do-query-replace-regexp (from to &optional delimited)
2005 "Do `query-replace-regexp' of FROM with TO, on all marked files. 2005 "Do `query-replace-regexp' of FROM with TO, on all marked files.
2006 Third arg DELIMITED (prefix arg) means replace only word-delimited matches. 2006 Third arg DELIMITED (prefix arg) means replace only word-delimited matches.
2007 If you exit (\\[keyboard-quit] or ESC), you can resume the query replace 2007 If you exit (\\[keyboard-quit], RET or q), you can resume the query replace
2008 with the command \\[tags-loop-continue]." 2008 with the command \\[tags-loop-continue]."
2009 (interactive 2009 (interactive
2010 "sQuery replace in marked files (regexp): \nsQuery replace %s by: \nP") 2010 "sQuery replace in marked files (regexp): \nsQuery replace %s by: \nP")
2011 (tags-query-replace from to delimited '(dired-get-marked-files))) 2011 (tags-query-replace from to delimited '(dired-get-marked-files)))
2012 2012