It seems that my question should be common knowledge, and I thought I knew it (at some point in the distant past), but the answer escapes me tonight. I'd like to take a string like "foo" and programmatically convert it to "\"foo\"". Is there a built-in function for that?
I realize I can (concat "\"" "foo" "\""), but I thought there is probably an existing function that does this.