(mm-uu-pgp-signed-extract): Use coding-system.
authorShengHuo ZHU <zsh@cs.rochester.edu>
Wed, 8 Nov 2000 00:12:16 +0000 (00:12 +0000)
committerShengHuo ZHU <zsh@cs.rochester.edu>
Wed, 8 Nov 2000 00:12:16 +0000 (00:12 +0000)
lisp/ChangeLog
lisp/mm-uu.el

index 80969b6..4da00ff 100644 (file)
@@ -2,6 +2,7 @@
 
        * mm-uu.el (mm-uu-type-alist): Don't test pgp stuff.
        (mm-uu-pgp-encrypted-extract): Clean mml2015 buffer.
+       (mm-uu-pgp-signed-extract): Use coding-system.
 
 2000-11-07 14:33:19  ShengHuo ZHU  <zsh@cs.rochester.edu>
 
index ec3c7f0..c51dd66 100644 (file)
@@ -264,7 +264,9 @@ To disable dissecting shar codes, for instance, add
     (with-current-buffer buf
       (when (mm-uu-pgp-signed-test)
        (mml2015-clean-buffer)
-       (funcall (mml2015-clear-verify-function)))
+       (let ((coding-system-for-write (or gnus-newsgroup-charset
+                                          'iso-8859-1)))
+         (funcall (mml2015-clear-verify-function))))
       (goto-char (point-min))
       (if (search-forward "\n\n" nil t)
          (delete-region (point-min) (point)))