forked from Github/emacs
xref--search-property: Jump over entries hidden by outline-minor-mode
* lisp/progmodes/xref.el (xref--search-property): Jump over entries hidden by e.g. outline-minor-mode (bug#49731).
This commit is contained in:
parent
275bc78286
commit
c38f3b1ce1
1 changed files with 3 additions and 1 deletions
|
|
@ -346,7 +346,9 @@ backward."
|
|||
(value nil))
|
||||
(while (progn
|
||||
(goto-char (funcall next (point) property))
|
||||
(not (or (setq value (get-text-property (point) property))
|
||||
(not (or (and
|
||||
(memq (get-char-property (point) 'invisible) '(ellipsis nil))
|
||||
(setq value (get-text-property (point) property)))
|
||||
(eobp)
|
||||
(bobp)))))
|
||||
(cond (value)
|
||||
|
|
|
|||
Loading…
Reference in a new issue