work, because that operation depended on being able to get the message
body as a string. But the operation that provided the message body in
that format was eliminated.
;;; -*-Scheme-*-
;;;
-;;; $Id: imail-file.scm,v 1.58 2000/08/05 02:00:10 cph Exp $
+;;; $Id: imail-file.scm,v 1.59 2000/08/18 16:55:20 cph Exp $
;;;
;;; Copyright (c) 1999-2000 Massachusetts Institute of Technology
;;;
(define-class <file-message> (<message>)
(body define accessor))
+(define-method file-message-body ((message <message>))
+ (with-string-output-port
+ (lambda (port)
+ (write-message-body message port))))
+
(define-method write-message-body ((message <file-message>) port)
(write-string (file-message-body message) port))
winner)))
winner))
(message-time headers)))
-
(define (received-header-time header)
(let ((time