* lisp/textmodes/reftex-global.el (reftex-query-replace-document):
Rewrite to use fileloop directly to avoid the obsolete function
tags-query-replace.
(eval-when-compile (require 'cl-lib))
(provide 'reftex-global)
(require 'reftex)
+
+(declare-function fileloop-continue "fileloop")
;;;
;;;###autoload
(unless to
(setq to (read-string (format "Replace regexp %s with: " from))))
(reftex-access-scan-info current-prefix-arg)
- (tags-query-replace from to (or delimited current-prefix-arg)
- (list 'reftex-all-document-files))))
+ (fileloop-initialize-replace
+ from to (reftex-all-document-files)
+ (if (equal from (downcase from)) nil 'default)
+ (or delimited current-prefix-arg))
+ (fileloop-continue)))
(defvar TeX-master)
(defvar isearch-next-buffer-function)