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 [email protected] 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. _______________________________________________ emacs-pretest-bug mailing list [email protected] http://lists.gnu.org/mailman/listinfo/emacs-pretest-bug
