init is evaluated from make-face with face bound to the make-faces (temporary) context, so I can't use react [... face/facet] there because face will be undefined by the time reaction gets evaluated. That's why I have to use react/link here, or do it's work of saving the objects myself.
I'd like to use simply react/link func [face] [...] face or react/link func [face] [...] [face] instead of react/link func [face _] [...] [face face].
E.g. this is what I'm doing some times:
init
is evaluated frommake-face
withface
bound to themake-face
s (temporary) context, so I can't usereact [... face/facet]
there becauseface
will be undefined by the time reaction gets evaluated. That's why I have to usereact/link
here, or do it's work of saving the objects myself.I'd like to use simply
react/link func [face] [...] face
orreact/link func [face] [...] [face]
instead ofreact/link func [face _] [...] [face face]
.