help-gnu-emacs
[Top][All Lists]
Advanced

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

Re: Interative batch query-replace question


From: Ke Lu
Subject: Re: Interative batch query-replace question
Date: Thu, 29 Nov 2007 14:56:50 +0900
User-agent: Gnus/5.11 (Gnus v5.11) Emacs/22.1.50 (gnu/linux)

Sorry, I forgot to move point to the begining of buffer,
It is ok now.

But dired-do-query-replace-regexp still have some peoblem.
My function looks like:
(defadvice query-replace-regexp (before
move-start-after-query-replace-regexp activate)
  (goto-char (point-min)))
  
  (defun batch-query-replace-regexp()
    (interactive)
      (switch-to-buffer "*Find*")
      (dired-do-query-replace-regexp "jp\\.co" "jp.co2")
      (switch-to-buffer "*Find*")
       (dired-do-query-replace-regexp "java" "java2")
  )

But the second one can't be executed and there is not any
error message.
What is the reason?

Ke Lu <lu@luxdo.jp> writes:

> I want to do a Interative batch query-replace which looks like:
> (defun a-batch-query-relace()
> (interactive)
> (query-replace "jp.co" "jp.co2")
> (query-replace "java" "java2")
> .....
> )
> But only first query-replace be excuted,I would like  to know why
> and how to solve it.


reply via email to

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