Remove \= from format string (bug#18190)

* lisp/emacs-lisp/eieio.el (defclass): Remove \= from format
string.
This commit is contained in:
Andreas Schwab 2016-04-30 12:16:55 +02:00
parent 1c58fa1d09
commit ffe701cb07

View file

@ -235,7 +235,7 @@ This method is obsolete."
(let ((f (intern (format "%s-child-p" name))))
`((defalias ',f ',testsym2)
(make-obsolete
',f ,(format "use (cl-typep ... \\='%s) instead" name)
',f ,(format "use (cl-typep ... '%s) instead" name)
"25.1"))))
;; When using typep, (typep OBJ 'myclass) returns t for objects which