I have a variable say some-var, its value is a string. I want to use its value in a quote expression.
'(some-var "some string")
The function who is using the above expression reports error because it gets some-var literally...not the value.
Any trick to eval some-var inside a quote expression?