Remove outdated FIXME

* lisp/emacs-lisp/eieio-core.el (eieio--slot-name-index): Remove
comment about issuing a byte compilation warning about accessing
slots via :initarg -- it was implemented a few months later.
This commit is contained in:
Lars Ingebrigtsen 2019-06-13 17:19:32 +02:00
parent 7bee5072f9
commit a6191e060b

View file

@ -866,7 +866,6 @@ reverse-lookup that name, and recurse with the associated slot value."
(if fn
;; Accessing a slot via its :initarg is accepted by EIEIO
;; (but not CLOS) but is a bad idea (for one: it's slower).
;; FIXME: We should emit a compile-time warning when this happens!
(eieio--slot-name-index class fn)
nil)))))