From: ueno Date: Tue, 28 Dec 1999 07:34:52 +0000 (+0000) Subject: * mime-edit.el (mime-edit-user-agent-value): Don't require X-Git-Tag: emiko-1_13_9~9 X-Git-Url: http://git.chise.org/gitweb/?p=elisp%2Fsemi.git;a=commitdiff_plain;h=8e4068193901d56ce10722f6da62a700402cf5e6 * mime-edit.el (mime-edit-user-agent-value): Don't require `apel-ver' directly. Sorry, this code is my mistake in last commitment. --- diff --git a/mime-edit.el b/mime-edit.el index 3eb5b08..a8a38ff 100644 --- a/mime-edit.el +++ b/mime-edit.el @@ -646,11 +646,8 @@ If it is not specified for a major-mode, " (" (mime-product-code-name mime-library-product) ") " - (condition-case nil - (progn - (require 'apel-ver) - (concat (apel-version) " ")) - (error nil)) + (if (fboundp 'apel-version) + (concat (apel-version) " ")) (if (featurep 'xemacs) (concat (cond ((featurep 'utf-2000) (concat "UTF-2000-MULE/" utf-2000-version))