* mel.el (mime-decode-string): Return original string
when it failed to decode.
+2000-04-17 Yoshiki Hayashi <yoshiki@xemacs.org>
+
+ * mel.el (mime-decode-string): Return original string
+ when it failed to decode.
+
2000-04-16 Kenichi OKADA <okada@opaopa.org>
* SLIM: Version 1.13.7 released.
the STRING by its value."
(let ((f (mel-find-function 'mime-decode-string encoding)))
(if f
- (funcall f string)
+ (condition-case nil
+ (funcall f string)
+ (error
+ (message "Wrong Content-Transfer-Encoding: %s"
+ encoding)
+ string))
string)))