bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#19564: 24.4; eieio backward compatibility


From: Stefan Monnier
Subject: bug#19564: 24.4; eieio backward compatibility
Date: Tue, 13 Jan 2015 14:52:49 -0500
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/25.0.50 (gnu/linux)

> The confusion comes that slot-value as documented should use the quoted
> slot (i.e 'slot) and oref should use the keyword slot (i.e :slot).

I don't think so:

   (defmacro oref (obj slot)
     `(eieio-oref ,obj (quote ,slot)))
   (defalias 'slot-value 'eieio-oref)

They both accept the slot name (except that one needs it quoted and the
other doesn't) and the initarg name (as an alternative name for the
slot).

> Note that it seems the documentation should be updated as slot-value
> support both form for slot ('slot and :slot), and IIRC oref also support
> both forms, but correct me if I am wrong, I am not sure about this one,
> I will check.

Could be, indeed.  I haven't looked enough at EIEIO's own documentation.


        Stefan





reply via email to

[Prev in Thread] Current Thread [Next in Thread]