+2001-12-15 Karl Eichwalder <ke@suse.de>
+
+ * po-mode.el (po-eval-requoted): Add \r to avoid additional quoting
+ during edit. Reported by Santiago Vila.
+
2001-12-06 Bruno Haible <bruno@clisp.org>
* gettextize.in: Install config.rpath in the directory specified
(goto-char (point-min))
(let ((multi-line (re-search-forward "[^\n]\n+[^\n]" nil t)))
(goto-char (point-min))
- (while (re-search-forward "[\"\a\b\f\n\t\\]" nil t)
+ (while (re-search-forward "[\"\a\b\f\n\r\t\\]" nil t)
(cond ((eq (preceding-char) ?\") (replace-match "\\\"" t t))
((eq (preceding-char) ?\a) (replace-match "\\a" t t))
((eq (preceding-char) ?\b) (replace-match "\\b" t t))
"\\n"
"\\n\"\n\"")
t t))
+ ((eq (preceding-char) ?\r) (replace-match "\\r" t t))
((eq (preceding-char) ?\t) (replace-match "\\t" t t))
((eq (preceding-char) ?\\) (replace-match "\\\\" t t))))
(goto-char (point-min))