`(mel-find-function 'mime-decode-string encoding)' is nil.
ENCODING must be string. If ENCODING is found in
`mime-string-decoding-method-alist' as its key, this function decodes
the STRING by its value."
- (funcall (mel-find-function 'mime-decode-string encoding)
- string))
+ (let ((f (mel-find-function 'mime-decode-string encoding)))
+ (if f
+ (funcall f string)
+ string)))
(mel-define-service encoded-text-encode-string (string encoding)