From: yamaoka Date: Fri, 15 Oct 2004 02:05:09 +0000 (+0000) Subject: Don't care even if there's no smime.el. X-Git-Tag: t-gnus-6_17_4-quimby-~710 X-Git-Url: http://git.chise.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e973b8638fffa48edea1dde9f916af00780ae3ad;p=elisp%2Fgnus.git- Don't care even if there's no smime.el. --- diff --git a/ChangeLog b/ChangeLog index f22ec7b..04fe807 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2004-10-15 Katsumi Yamaoka + + * lisp/mml-smime.el: Don't care even if there's no smime.el. + 2004-09-30 Simon Josefsson * Makefile.in (GNUS-NEWS): Depend on texi/gnus-news.texi. diff --git a/lisp/mml-smime.el b/lisp/mml-smime.el index dbcd1c1..4154388 100644 --- a/lisp/mml-smime.el +++ b/lisp/mml-smime.el @@ -27,7 +27,10 @@ (eval-when-compile (require 'cl)) -(require 'smime) +;; EMIKO doesn't provide the smime.el module. +(condition-case nil + (require 'smime) + (error)) (require 'mm-decode) (autoload 'message-narrow-to-headers "message") (autoload 'message-fetch-field "message")