diff options
| author | Gerd Moellmann <gerd@gnu.org> | 2001-09-12 14:00:41 +0000 |
|---|---|---|
| committer | Gerd Moellmann <gerd@gnu.org> | 2001-09-12 14:00:41 +0000 |
| commit | 1b39996d23e3ae7e0936cd7065b06289b6b43cbe (patch) | |
| tree | 0c4cc7830dc47f65196a6a9f39cca4420e2cc1ca /lisp | |
| parent | eaa493dfe68750d0bc7782fd7aae89b5726d2719 (diff) | |
| download | emacs-1b39996d23e3ae7e0936cd7065b06289b6b43cbe.tar.gz | |
(ediff-get-meta-info): Take into account that data
from `ediff-meta-info' properties need not be an overlay. From
David Ponce <dponce@voila.fr>.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ediff-mult.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/ediff-mult.el b/lisp/ediff-mult.el index 85ac72ee464..83ed80b74b2 100644 --- a/lisp/ediff-mult.el +++ b/lisp/ediff-mult.el @@ -1968,7 +1968,8 @@ If this is a session registry buffer then just bury it." olist)) (while (and olist (or (null (car olist)) - (overlay-get (car olist) 'invisible))) + (and (overlayp (car olist)) + (overlay-get (car olist) 'invisible)))) (setq olist (cdr olist))) (setq result (car olist))))) (if result |
