summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2015-11-04 09:42:20 -0500
committerStefan Monnier <monnier@iro.umontreal.ca>2015-11-04 09:42:20 -0500
commit54e2ed97bf904eda2ee5ae9b7822288e10b3abc5 (patch)
treec69c933b9ddd53a7715ec1e5dff31d28dad257b7 /lisp
parent39355bc045874874eb83cecdf2e2e04c3b81d3f7 (diff)
downloademacs-54e2ed97bf904eda2ee5ae9b7822288e10b3abc5.tar.gz
* lisp/emacs-lisp/eieio-compat.el: Typo caught by tests
(eieio--generic-static-object-generalizer): Fix typo. * test/automated/eieio-tests.el: Byte-compile it again. It looks like the underlying cause of bug#17852 was fixed in the mean time.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/emacs-lisp/eieio-compat.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/eieio-compat.el b/lisp/emacs-lisp/eieio-compat.el
index 638c475ef2b..06e65b9df80 100644
--- a/lisp/emacs-lisp/eieio-compat.el
+++ b/lisp/emacs-lisp/eieio-compat.el
@@ -143,7 +143,7 @@ Summary:
;; Give it a slightly higher priority than `class' so that the
;; interleaved list comes before the class's non-interleaved list.
51 #'cl--generic-struct-tag
- (lambda (tag _targets)
+ (lambda (tag &rest _)
(and (symbolp tag) (boundp tag) (setq tag (symbol-value tag))
(eieio--class-p tag)
(let ((superclasses (eieio--class-precedence-list tag))