From a83ab7b390a096191995f9778755c1e6cd4001c8 Mon Sep 17 00:00:00 2001 From: tomo Date: Thu, 7 Dec 2000 05:52:08 +0000 Subject: [PATCH] Don't use `defun-maybe'. --- sha1.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sha1.el b/sha1.el index a7265b6..24a3af5 100644 --- a/sha1.el +++ b/sha1.el @@ -43,7 +43,8 @@ (require 'hex-util) (eval-when-compile - (defun-maybe sha1-string (a))) + (or (fboundp 'sha1-string) + (defun sha1-string (a)))) (defvar sha1-dl-module (if (and (fboundp 'sha1-string) -- 1.7.10.4