* lisp/international/titdic-cnv.el (tit-process-header):
In generated doc strings, escape \, ", ', and ` properly.
Currently only ' appears but we might as well future-proof this.
(pos (point)))
(cond ((= ch ?C) ; COMMENT
(cond ((looking-at "COMMENT")
- (let ((pos (match-end 0)))
+ (let ((pos (match-end 0))
+ (to (progn (end-of-line) (point))))
+ (goto-char pos)
+ (while (re-search-forward "[\\\"]" to t)
+ (replace-match "\\\\\\&"))
+ (goto-char pos)
+ (while (re-search-forward "['`]" to t)
+ (replace-match "\\\\\\\\=\\&"))
(end-of-line)
(setq tit-comments
(cons (buffer-substring-no-properties pos (point))