From 1b39996d23e3ae7e0936cd7065b06289b6b43cbe Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Wed, 12 Sep 2001 14:00:41 +0000 Subject: [PATCH] (ediff-get-meta-info): Take into account that data from `ediff-meta-info' properties need not be an overlay. From David Ponce . --- lisp/ediff-mult.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- 2.39.5