]> git.eshelyaron.com Git - emacs.git/commitdiff
Compilation work-around for obsolete eieio-object-set-name-string
authorLars Ingebrigtsen <larsi@gnus.org>
Mon, 17 Jun 2019 19:53:22 +0000 (21:53 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Mon, 17 Jun 2019 19:53:22 +0000 (21:53 +0200)
* lisp/emacs-lisp/eieio-base.el (eieio-object-set-name-string):
Move the generic definition of this method to here from eieio.el
and place it after the cl-method definition.  This avoids a
warning about it being obsolete when doing macro expansion.

lisp/emacs-lisp/eieio-base.el
lisp/emacs-lisp/eieio.el

index 0b2909c1e8d6c61a40bbc6f083bd6c57f7e0d7fa..b6358bdd0f980548672dbb3a16193ae44f6733db 100644 (file)
@@ -513,6 +513,14 @@ instance."
   (cl-check-type name string)
   (eieio-oset obj 'object-name name))
 
+(cl-defgeneric eieio-object-set-name-string (obj name)
+  "Set the string which is OBJ's NAME."
+  (declare (obsolete "inherit from `eieio-named' and use (setf (slot-value OBJ \\='object-name) NAME) instead" "25.1"))
+  (cl-check-type name string)
+  (setf (gethash obj eieio--object-names) name))
+(define-obsolete-function-alias
+  'object-set-name-string 'eieio-object-set-name-string "24.4")
+
 (cl-defmethod clone ((obj eieio-named) &rest params)
   "Clone OBJ, initializing `:parent' to OBJ.
 All slots are unbound, except those initialized with PARAMS."
index 3169541e5bf26320e556099b3029be4e3904780b..400599a73ede36b1daa88f2547f691bac18a1a6f 100644 (file)
@@ -408,14 +408,6 @@ If EXTRA, include that in the string returned to represent the symbol."
             extra))))
 (define-obsolete-function-alias 'object-name #'eieio-object-name "24.4")
 
-(cl-defgeneric eieio-object-set-name-string (obj name)
-  "Set the string which is OBJ's NAME."
-  (declare (obsolete "inherit from `eieio-named' and use (setf (slot-value OBJ \\='object-name) NAME) instead" "25.1"))
-  (cl-check-type name string)
-  (setf (gethash obj eieio--object-names) name))
-(define-obsolete-function-alias
-  'object-set-name-string 'eieio-object-set-name-string "24.4")
-
 (defun eieio-object-class (obj)
   "Return the class struct defining OBJ."
   ;; FIXME: We say we return a "struct" but we return a symbol instead!