I need to produce a string with emacs lisp, in which, there must contain double-quote '"'. By studying the string syntax of emacs lisp, I thought "\"" would represent such double-quote. But to my surprise, I the following expression (concat "\"") produced "\"" the '\' being not desired.
Please teach me how I can produce a pure double quote in a string?
Thanks in advance.
Yu