emacs-pretest-bug
[Top][All Lists]
Advanced

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

bug in dired-do-query-replace-regexp (fix included)


From: David Wallin
Subject: bug in dired-do-query-replace-regexp (fix included)
Date: Thu, 01 Jun 2006 13:05:50 +0100
User-agent: Wanderlust/2.15.3 (Almost Unreal) Emacs/22.0 Mule/5.0 (SAKAKI)

Please write in English if possible, because the Emacs maintainers
usually do not have translators to read other languages for them.

Your bug report will be posted to the address@hidden mailing list.

Please describe exactly what actions triggered the bug
and the precise symptoms of the bug:

'Q' in dired doesn't work. It seems like the culprit is that
`query-replace-read-args' is called with too many args. 

This seem to fix things:

--- dired-aux.el        2006-06-01 12:43:38.000000000 +0100
+++ dired-aux.el        2006-06-01 12:40:34.000000000 +0100
@@ -2217,7 +2217,7 @@
   (interactive
    (let ((common
          (query-replace-read-args
-          "Query replace regexp in marked files" t t)))
+          "Query replace regexp in marked files" t)))
      (list (nth 0 common) (nth 1 common) (nth 2 common))))
   (dolist (file (dired-get-marked-files nil nil 'dired-nondirectory-p))
     (let ((buffer (get-file-buffer file)))

cheers,

--david.




reply via email to

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