Function: oref-default
oref-default is a macro defined in eieio.el.gz.
Signature
(oref-default CLASS SLOT)
Documentation
Get the value of class allocated slot SLOT.
CLASS can also be an object, in which case we use the object's class.
Probably introduced at or before Emacs version 28.1.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/eieio.el.gz
(defmacro oref-default (class slot)
"Get the value of class allocated slot SLOT.
CLASS can also be an object, in which case we use the object's class."
(declare (debug (form symbolp)))
`(eieio-oref-default ,class (quote ,slot)))