Hello!
Can anyone help me with this lisp quesition?
I passed a list (only one item) to a function and inside function I want to set value of this list to a text widget.
I have:
(defun display-value (mylist)
(set-value text1 "value" mylist) ; which is not working because mylist is not string
)
How can I convert mylist to string type to set text field value.
Because the interpreter is customized, please show me all the possible way to do it.
Thanks!
Can anyone help me with this lisp quesition?
I passed a list (only one item) to a function and inside function I want to set value of this list to a text widget.
I have:
(defun display-value (mylist)
(set-value text1 "value" mylist) ; which is not working because mylist is not string
)
How can I convert mylist to string type to set text field value.
Because the interpreter is customized, please show me all the possible way to do it.
Thanks!