Mercurial > emacs
changeset 88129:89e63d46028b
Attempt to minimize byte compilation warnings.
author | Paul Reilly <pmr@pajato.com> |
---|---|
date | Sat, 15 Feb 2003 15:40:39 +0000 |
parents | b621daa96824 |
children | 363419a0d27c |
files | lisp/mail/rmailmsc.el lisp/mail/rmailsort.el |
diffstat | 2 files changed, 8 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/mail/rmailmsc.el Sat Feb 15 15:38:18 2003 +0000 +++ b/lisp/mail/rmailmsc.el Sat Feb 15 15:40:39 2003 +0000 @@ -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.
--- a/lisp/mail/rmailsort.el Sat Feb 15 15:38:18 2003 +0000 +++ b/lisp/mail/rmailsort.el Sat Feb 15 15:40:39 2003 +0000 @@ -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 @@ ;; Assume the default time zone is GMT. (timezone-make-date-sortable date "GMT" "GMT")) -(provide 'rmailsort) - ;;; rmailsort.el ends here