diff options
| author | Noam Postavsky | 2018-03-01 22:04:57 -0500 |
|---|---|---|
| committer | Noam Postavsky | 2018-03-01 22:08:42 -0500 |
| commit | cc8ae51e6f62f86d07c82c6ab7ce162150fae448 (patch) | |
| tree | 5f9c6913cdf7321faeec36e853144758e3d8ae69 | |
| parent | 4a0934192176fb8e372170f5f028edcf0f8cbdc3 (diff) | |
| download | emacs-cc8ae51e6f62f86d07c82c6ab7ce162150fae448.tar.gz emacs-cc8ae51e6f62f86d07c82c6ab7ce162150fae448.zip | |
; lisp/emacs-lisp/eieio.el (eieio-object-set-name-string): Fix quote.
| -rw-r--r-- | lisp/emacs-lisp/eieio.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/eieio.el b/lisp/emacs-lisp/eieio.el index de08e37286b..1e1419f6eb7 100644 --- a/lisp/emacs-lisp/eieio.el +++ b/lisp/emacs-lisp/eieio.el | |||
| @@ -403,7 +403,7 @@ If EXTRA, include that in the string returned to represent the symbol." | |||
| 403 | 403 | ||
| 404 | (cl-defgeneric eieio-object-set-name-string (obj name) | 404 | (cl-defgeneric eieio-object-set-name-string (obj name) |
| 405 | "Set the string which is OBJ's NAME." | 405 | "Set the string which is OBJ's NAME." |
| 406 | (declare (obsolete "inherit from `eieio-named' and use (setf (slot-value OBJ 'object-name) NAME) instead" "25.1")) | 406 | (declare (obsolete "inherit from `eieio-named' and use (setf (slot-value OBJ \\='object-name) NAME) instead" "25.1")) |
| 407 | (cl-check-type name string) | 407 | (cl-check-type name string) |
| 408 | (setf (gethash obj eieio--object-names) name)) | 408 | (setf (gethash obj eieio--object-names) name)) |
| 409 | (define-obsolete-function-alias | 409 | (define-obsolete-function-alias |