diff options
Diffstat (limited to 'lisp/replace.el')
| -rw-r--r-- | lisp/replace.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/replace.el b/lisp/replace.el index 15d5f2694a8..af05bd11fb2 100644 --- a/lisp/replace.el +++ b/lisp/replace.el | |||
| @@ -2093,6 +2093,9 @@ make, or the user didn't cancel the call." | |||
| 2093 | (setq skip-filtered-count (1+ skip-filtered-count))) | 2093 | (setq skip-filtered-count (1+ skip-filtered-count))) |
| 2094 | ;; Optionally ignore invisible matches. | 2094 | ;; Optionally ignore invisible matches. |
| 2095 | ((not (or (eq search-invisible t) | 2095 | ((not (or (eq search-invisible t) |
| 2096 | ;; Don't open overlays for automatic replacements. | ||
| 2097 | (and (not query-flag) search-invisible) | ||
| 2098 | ;; Open hidden overlays for interactive replacements. | ||
| 2096 | (not (isearch-range-invisible | 2099 | (not (isearch-range-invisible |
| 2097 | (nth 0 real-match-data) (nth 1 real-match-data))))) | 2100 | (nth 0 real-match-data) (nth 1 real-match-data))))) |
| 2098 | (setq skip-invisible-count (1+ skip-invisible-count))) | 2101 | (setq skip-invisible-count (1+ skip-invisible-count))) |