Function: nnimap-quote-specials
nnimap-quote-specials is a byte-compiled function defined in
nnimap.el.gz.
Signature
(nnimap-quote-specials STRING)
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/nnimap.el.gz
(defun nnimap-quote-specials (string)
(with-temp-buffer
(insert string)
(goto-char (point-min))
(while (re-search-forward "[\\\"]" nil t)
(forward-char -1)
(insert "\\")
(forward-char 1))
(buffer-string)))