1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 12:21:25 -08:00

* 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.
This commit is contained in:
Stefan Monnier 2015-11-04 09:42:20 -05:00
parent 39355bc045
commit 54e2ed97bf
2 changed files with 1 additions and 5 deletions

View file

@ -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))

View file

@ -898,7 +898,3 @@ Subclasses to override slot attributes.")
(provide 'eieio-tests)
;;; eieio-tests.el ends here
;; Local Variables:
;; no-byte-compile: t
;; End: