]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/emacs-lisp/comp-cstr.el (comp--direct-supertype): Remove unused.
authorAndrea Corallo <acorallo@gnu.org>
Fri, 3 Nov 2023 17:34:05 +0000 (18:34 +0100)
committerAndrea Corallo <acorallo@gnu.org>
Fri, 3 Nov 2023 18:03:51 +0000 (19:03 +0100)
lisp/emacs-lisp/comp-cstr.el

index 70213c9b13c33c87a5dec533cf790dbfdc8c78bf..e47e93cda18b284f1f15177596abfeb68b203dc0 100644 (file)
@@ -269,16 +269,6 @@ Return them as multiple value."
   (string-lessp (symbol-name x)
                 (symbol-name y)))
 
-(defun comp--direct-supertype (type)    ;FIXME: There can be several!
-  "Return the direct supertype of TYPE."
-  (declare (obsolete comp--direct-supertype "30.1"))
-  (cl-loop
-   named outer
-   for i in (comp-cstr-ctxt-typeof-types comp-ctxt)
-   do (cl-loop for (j y) on i
-                   when (eq j type)
-                     do (cl-return-from outer y))))
-
 (defun comp--direct-supertypes (type)
   "Return the direct supertypes of TYPE."
   (let ((supers (comp-supertypes type)))