branch: externals/ebdb
commit 1ebd9ebc6de0be98389e53bbd77b83856a575f2e
Author: Eric Abrahamsen <e...@ericabrahamsen.net>
Commit: Eric Abrahamsen <e...@ericabrahamsen.net>

    Fix function call
    
    * ebdb.el (ebdb-load): Forgot the eieio prefix to `eieio-object-p'.
---
 ebdb.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ebdb.el b/ebdb.el
index 606da40..99cbeb9 100644
--- a/ebdb.el
+++ b/ebdb.el
@@ -4849,7 +4849,7 @@ important work is done by the `ebdb-db-load' method."
                 (setq s (make-instance 'ebdb-db-file :file s :dirty t))
                 ;; Try to get it on disk first.
                 (ebdb-db-save s))))
-           ((null (and (object-p s)
+           ((null (and (eieio-object-p s)
                        (object-of-class-p s 'ebdb-db)))
             (error "Source %s must be a filename or instance of `ebdb-db'." 
s)))
       ;; Now load it.

Reply via email to