aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/emacs-lisp/eieio.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/eieio.el b/lisp/emacs-lisp/eieio.el
index 772ebd900de..51a6f7bc206 100644
--- a/lisp/emacs-lisp/eieio.el
+++ b/lisp/emacs-lisp/eieio.el
@@ -235,7 +235,7 @@ This method is obsolete."
235 (let ((f (intern (format "%s-child-p" name)))) 235 (let ((f (intern (format "%s-child-p" name))))
236 `((defalias ',f ',testsym2) 236 `((defalias ',f ',testsym2)
237 (make-obsolete 237 (make-obsolete
238 ',f ,(format "use (cl-typep ... \\='%s) instead" name) 238 ',f ,(format "use (cl-typep ... '%s) instead" name)
239 "25.1")))) 239 "25.1"))))
240 240
241 ;; When using typep, (typep OBJ 'myclass) returns t for objects which 241 ;; When using typep, (typep OBJ 'myclass) returns t for objects which