; lisp/emacs-lisp/eieio.el (eieio-object-set-name-string): Fix quote.
This commit is contained in:
parent
4a09341921
commit
cc8ae51e6f
1 changed files with 1 additions and 1 deletions
|
@ -403,7 +403,7 @@ If EXTRA, include that in the string returned to represent the symbol."
|
|||
|
||||
(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"))
|
||||
(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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue