- Code: Select all
(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:
- Code: Select all
(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.
