From 5877831bf375491115b835d97a700a83227f9ef8 Mon Sep 17 00:00:00 2001 From: yamaoka Date: Wed, 25 Aug 1999 07:14:43 +0000 Subject: [PATCH] Use `if' instead of `unless'. --- FLIM-ELS | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/FLIM-ELS b/FLIM-ELS index 904ec74..1d8ebf6 100644 --- a/FLIM-ELS +++ b/FLIM-ELS @@ -12,8 +12,9 @@ mailcap smtp smtpmail)) -(unless (and (fboundp 'base64-encode-string) - (subrp (symbol-function 'base64-encode-string))) +(if (and (fboundp 'base64-encode-string) + (subrp (symbol-function 'base64-encode-string))) + nil (if (fboundp 'dynamic-link) (setq flim-modules (cons 'mel-b-dl flim-modules)) ) -- 1.7.10.4