Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
de207f5a
Commit
de207f5a
authored
Jun 20, 1998
by
Kenichi Handa
Browse files
(isearch-range-invisible): Handle the case that
buffer-invisibility-spec is t (i.e. not a list).
parent
7678db25
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
lisp/isearch.el
lisp/isearch.el
+4
-2
No files found.
lisp/isearch.el
View file @
de207f5a
...
...
@@ -1619,8 +1619,10 @@ If there is no completion possible, say so and continue searching."
(while overlays
(setq o (car overlays)
invis-prop (overlay-get o 'invisible))
(if (or (memq invis-prop buffer-invisibility-spec)
(assq invis-prop buffer-invisibility-spec))
(if (if (eq buffer-invisibility-spec t)
invis-prop
(or (memq invis-prop buffer-invisibility-spec)
(assq invis-prop buffer-invisibility-spec)))
(if (overlay-get o 'isearch-open-invisible)
(setq ov-list (cons o ov-list))
;; We found one overlay that cannot be
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment