diff options
author | Andreas Schwab <schwab@linux-m68k.org> | 2016-04-30 12:16:55 +0200 |
---|---|---|
committer | Andreas Schwab <schwab@linux-m68k.org> | 2016-04-30 12:19:15 +0200 |
commit | ffe701cb07cfb3584c4e4894976f0c9487d02c59 (patch) | |
tree | b31678757935fa8a0b653bdce17bbafd75a6676f | |
parent | 1c58fa1d09686b1c1ea676c7be46055722608e6c (diff) | |
download | emacs-ffe701cb07cfb3584c4e4894976f0c9487d02c59.tar.gz emacs-ffe701cb07cfb3584c4e4894976f0c9487d02c59.tar.bz2 emacs-ffe701cb07cfb3584c4e4894976f0c9487d02c59.zip |
Remove \= from format string (bug#18190)
* lisp/emacs-lisp/eieio.el (defclass): Remove \= from format
string.
-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 772ebd900de..51a6f7bc206 100644 --- a/lisp/emacs-lisp/eieio.el +++ b/lisp/emacs-lisp/eieio.el @@ -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 |