diff options
| author | Andreas Schwab | 2016-04-30 12:16:55 +0200 |
|---|---|---|
| committer | Andreas Schwab | 2016-04-30 12:19:15 +0200 |
| commit | ffe701cb07cfb3584c4e4894976f0c9487d02c59 (patch) | |
| tree | b31678757935fa8a0b653bdce17bbafd75a6676f | |
| parent | 1c58fa1d09686b1c1ea676c7be46055722608e6c (diff) | |
| download | emacs-ffe701cb07cfb3584c4e4894976f0c9487d02c59.tar.gz 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." | |||
| 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 |