]> git.eshelyaron.com Git - emacs.git/commitdiff
Attempt to minimize byte compilation warnings.
authorPaul Reilly <pmr@pajato.com>
Sat, 15 Feb 2003 15:40:39 +0000 (15:40 +0000)
committerPaul Reilly <pmr@pajato.com>
Sat, 15 Feb 2003 15:40:39 +0000 (15:40 +0000)
lisp/mail/rmailmsc.el
lisp/mail/rmailsort.el

index 7a0871f141473dfbcb1e1079fdf8e01e59fa7097..f2693e8f2e771e48f8c6085775be2ca9e0651182 100644 (file)
@@ -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.
index c4e95c80541dcfdf9d479f69ee05fa63acd22529..b8e1ac27a2b6f5703f8be2ee25908e9484439709 100644 (file)
 
 ;;; 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