[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: How to use new command `multi-file-replace-regexp-as-diff`
From: |
Michael Heerdegen |
Subject: |
Re: How to use new command `multi-file-replace-regexp-as-diff` |
Date: |
Fri, 04 Apr 2025 11:43:46 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) |
Sébastien Gendre <seb@k-7.ch> writes:
> I wanted to try the command `multi-file-replace-regexp-as-diff`
> introduced in Emacs 30.1.
>
> When I call it interactively, it constantly ask me which file is the
> next one to search. It say "(RET to end)", but when I type RET it just
> continue to ask for the next file.
It's a bug in `multi-isearch-read-files`, a problem in the test
condition terminating the loop reading the file names. Could you please
report it?
The issue doesn't happen always but at least when `default-directory' is
a subdirectory of the user's home directory. Then the test looks like
this:
(string-equal "~/a/b/c/" "/home/user/a/b/c/")
and this obviously doesn't return the intended result.
Michael.