I'm trying to create a "dynamic" widget, the following code works fine:
Thanks,
Enrique.
(widget-create 'radio-button-choice
:value "One"
:notify (lambda (widget &rest ignore)
(message "You selected %s"
(widget-value widget)))
'(item "One") '(item "Two") '(item "Three.") ;; <--- items line
)
But I want to replace the items line to something like:(widget-create 'radio-button-choice
:value "One"
:notify (lambda (widget &rest ignore)
(message "You selected %s"
(widget-value widget)))
(get-widget-items) ;; <--- items line
)
and compose the items into get-widget-items as a list.Thanks,
Enrique.