`base64-encode-string' by MEL.
* dgnushack.el: Load base64.el before canlock-om.el to avoid damage to define
`base64-encode-string' by MEL.
2002-01-23 Katsumi Yamaoka <yamaoka@jpl.org>
+ * lisp/message.el: Require `base64' before `canlock-om' to avoid
+ damage to define `base64-encode-string' by MEL.
+
+ * lisp/dgnushack.el: Load base64.el before canlock-om.el to avoid
+ damage to define `base64-encode-string' by MEL.
+
+2002-01-23 Katsumi Yamaoka <yamaoka@jpl.org>
+
* lisp/gnus-sum.el (gnus-article-commands-menu): Bind "Html" to
the command `gnus-article-wash-html'.
(gnus-summary-article-menu): Ditto.
(load (expand-file-name "gnus-clfns.el" srcdir) nil t t)
(when (boundp 'MULE)
+ ;; Bind the function `base64-encode-string' before loading canlock.
+ ;; Since canlock will bind it as an autoloaded function, it causes
+ ;; damage to define the function by MEL.
+ (load (expand-file-name "base64.el" srcdir) nil t t)
;; Load special macros for compiling canlock.el.
(load (expand-file-name "canlock-om.el" srcdir) nil t t))
(defvar gnus-list-identifiers)) ; gnus-sum is required where necessary
(eval-and-compile
(if (boundp 'MULE)
- (require 'canlock-om)
+ (progn
+ (require 'base64)
+ (require 'canlock-om))
(require 'canlock)))
(require 'mailheader)
(require 'nnheader)