diff options
Diffstat (limited to 'lisp/emacs-lisp/eieio.el')
-rw-r--r-- | lisp/emacs-lisp/eieio.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/eieio.el b/lisp/emacs-lisp/eieio.el index d6c27be0567..bf28f8975bc 100644 --- a/lisp/emacs-lisp/eieio.el +++ b/lisp/emacs-lisp/eieio.el @@ -114,10 +114,10 @@ and reference them using the function `class-option'." (cond ((and (stringp (car options-and-doc)) (/= 1 (% (length options-and-doc) 2))) - (error "Too many arguments to ‘defclass’")) + (error "Too many arguments to `defclass'")) ((and (symbolp (car options-and-doc)) (/= 0 (% (length options-and-doc) 2))) - (error "Too many arguments to ‘defclass’"))) + (error "Too many arguments to `defclass'"))) (if (stringp (car options-and-doc)) (setq options-and-doc @@ -942,7 +942,7 @@ this object." "Change the class of OBJ to type CLASS. This may create or delete slots, but does not affect the return value of `eq'." - (error "EIEIO: ‘change-class’ is unimplemented")) + (error "EIEIO: `change-class' is unimplemented")) ;; Hook ourselves into help system for describing classes and methods. ;; FIXME: This is not actually needed any more since we can click on the |