(mime-editor/process-multipart-1): Use function `string-equal' instead
authormorioka <morioka>
Sat, 25 May 1996 15:52:44 +0000 (15:52 +0000)
committermorioka <morioka>
Sat, 25 May 1996 15:52:44 +0000 (15:52 +0000)
of `string='.

mime-edit.el

index 8a9b429..87256eb 100644 (file)
@@ -9,7 +9,7 @@
 ;;; Maintainer: MORIOKA Tomohiko <morioka@jaist.ac.jp>
 ;;; Created: 1994/08/21 renamed from mime.el by UMEDA Masanobu;
 ;;;          1996/05/24 renamed from tm-edit.el
-;;; Version: $Revision: 0.8 $
+;;; Version: $Revision: 0.9 $
 ;;; Keywords: mail, news, MIME, multimedia, multilingual
 ;;;
 ;;; This file is part of SEMI (September, Emacs MIME Interface)
 ;;;
 
 (defconst mime-editor/RCS-ID
-  "$Id: mime-edit.el,v 0.8 1996-05-25 15:48:33 morioka Exp $")
+  "$Id: mime-edit.el,v 0.9 1996-05-25 15:52:44 morioka Exp $")
 
 (defconst mime-editor/version (get-version-string mime-editor/RCS-ID))
 
@@ -1460,7 +1460,7 @@ while if FLAG is `\\^M' (control-M) the text is hidden."
          (cond ((string-equal type "quote")
                 (mime-editor/enquote-region bb eb)
                 )
-               ((string= type "signed")
+               ((string-equal type "signed")
                 (cond ((eq mime-editor/signing-type 'pgp-elkins)
                        (mime-editor/sign-pgp-elkins bb eb boundary)
                        )
@@ -1468,7 +1468,7 @@ while if FLAG is `\\^M' (control-M) the text is hidden."
                        (mime-editor/sign-pgp-kazu bb eb boundary)
                        ))
                 )
-               ((string= type "encrypted")
+               ((string-equal type "encrypted")
                 (cond ((eq mime-editor/encrypting-type 'pgp-elkins)
                        (mime-editor/encrypt-pgp-elkins bb eb boundary)
                        )