From aa98d7ae55bd71349244e28b11258ca37f32b8ec Mon Sep 17 00:00:00 2001 From: Paul Reilly Date: Sat, 15 Feb 2003 15:40:39 +0000 Subject: [PATCH] Attempt to minimize byte compilation warnings. --- lisp/mail/rmailmsc.el | 3 +++ lisp/mail/rmailsort.el | 10 +++++----- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/lisp/mail/rmailmsc.el b/lisp/mail/rmailmsc.el index 7a0871f1414..f2693e8f2e7 100644 --- a/lisp/mail/rmailmsc.el +++ b/lisp/mail/rmailmsc.el @@ -26,6 +26,9 @@ ;;; Code: +(eval-when-compile + (require 'rmail)) + ;;;###autoload (defun set-rmail-inbox-list (file-name) "Set the inbox list of the current RMAIL file to FILE-NAME. diff --git a/lisp/mail/rmailsort.el b/lisp/mail/rmailsort.el index c4e95c80541..b8e1ac27a2b 100644 --- a/lisp/mail/rmailsort.el +++ b/lisp/mail/rmailsort.el @@ -27,10 +27,12 @@ ;;; Code: -(require 'sort) +(provide 'rmailsort) -;; For rmail-select-summary -(require 'rmail) +(eval-when-compile + (require 'mail-utils) + (require 'sort) + (require 'rmail)) (autoload 'timezone-make-date-sortable "timezone") @@ -244,6 +246,4 @@ Arguments are MSG and FIELD." ;; Assume the default time zone is GMT. (timezone-make-date-sortable date "GMT" "GMT")) -(provide 'rmailsort) - ;;; rmailsort.el ends here -- 2.39.2