mirror of
https://github.com/masscollaborationlabs/emacs.git
synced 2025-07-03 19:03:24 +00:00
Use 'file-equal-p' in 'multi-isearch-read-files' (bug#77678).
* lisp/misearch.el (multi-isearch-read-files): Replace 'string-equal' with 'file-equal-p' that should handle abbreviated file names as well.
This commit is contained in:
parent
746a3cb314
commit
483762ef2f
1 changed files with 1 additions and 1 deletions
|
@ -327,7 +327,7 @@ Every next/previous file in the defined sequence is visited by
|
|||
default-directory
|
||||
buffer-file-name)))
|
||||
(file nil))
|
||||
(while (not (string-equal
|
||||
(while (not (file-equal-p
|
||||
(setq file (read-file-name
|
||||
"Next file to search (RET to end): "
|
||||
default-directory
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue