From a7c3070757174abcf503a88d7ee84b5451cfa8e0 Mon Sep 17 00:00:00 2001 From: ueno Date: Fri, 21 Apr 2006 08:33:11 +0000 Subject: [PATCH] Convert line-endings before verify. --- mime-pgp.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mime-pgp.el b/mime-pgp.el index 2373b61..056e5e9 100644 --- a/mime-pgp.el +++ b/mime-pgp.el @@ -146,6 +146,9 @@ (if (fboundp 'set-buffer-multibyte) (set-buffer-multibyte nil)) (mime-insert-entity orig-entity) + (goto-char (point-min)) + (while (search-forward "\n" nil t) + (replace-match "\r\n")) (buffer-substring))) (message "%s" (epg-verify-result-to-string -- 1.7.10.4