I would like to replace forward slaches to backslashes in emacs lisp. If I use this :
(replace-regexp-in-string "\/" "\\" path))
I get an error.
(error "Invalid use of `\\' in replacement text")
So how to represent the backslash in the second regexp?