]> code.delx.au - gnu-emacs/blobdiff - lisp/cedet/semantic/db.el
* lisp/cedet: Reduce reliance on EIEIO internals.
[gnu-emacs] / lisp / cedet / semantic / db.el
index 13e2d1b37d4ee1f39d9eb480b8970fc372b3a8c8..0732f2257794524273f043b9ef89bd3dbc3c1c78 100644 (file)
@@ -481,7 +481,7 @@ other than :table."
   (let ((cache (oref table cache))
        (obj nil))
     (while (and (not obj) cache)
-      (if (eq (eieio--object-class (car cache)) desired-class)
+      (if (eq (eieio-object-class (car cache)) desired-class)
          (setq obj (car cache)))
       (setq cache (cdr cache)))
     (if obj
@@ -532,7 +532,7 @@ other than :table."
   (let ((cache (oref db cache))
        (obj nil))
     (while (and (not obj) cache)
-      (if (eq (eieio--object-class (car cache)) desired-class)
+      (if (eq (eieio-object-class (car cache)) desired-class)
          (setq obj (car cache)))
       (setq cache (cdr cache)))
     (if obj