From 9b6f5d4348b087635924d5f0bc80e8ef4457870a Mon Sep 17 00:00:00 2001 From: morioka Date: Fri, 17 Apr 1998 02:07:47 +0000 Subject: [PATCH] (base64-dl-module): Must check base64.so actually exists. --- mel.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mel.el b/mel.el index 50cc8f8..8582c09 100644 --- a/mel.el +++ b/mel.el @@ -41,7 +41,9 @@ (defvar base64-dl-module (and (fboundp 'dynamic-link) - (expand-file-name "base64.so" exec-directory))) + (let ((path (expand-file-name "base64.so" exec-directory))) + (and (file-exists-p path) + path)))) ;;; @ autoload -- 1.7.10.4