From 35b837a3b064514fe8b979e5007f0abd111e6203 Mon Sep 17 00:00:00 2001 From: sperber Date: Tue, 21 Jan 2003 08:14:56 +0000 Subject: [PATCH] Comment fixes. --- scheme/lib/pop3.scm | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/scheme/lib/pop3.scm b/scheme/lib/pop3.scm index ae3e3dc..b7921ab 100644 --- a/scheme/lib/pop3.scm +++ b/scheme/lib/pop3.scm @@ -1,8 +1,9 @@ -;;; POP3.scm --- implement the POP3 maildrop protocol in the Scheme Shell +;;; pop3.scm --- implement the POP3 maildrop protocol in the Scheme Shell ;;; This file is part of the Scheme Untergrund Networking package. ;;; Copyright (c) 1998 by Eric Marsden +;;; Copyright (c) 2003 by Mike Sperber ;;; For copyright information, see the file COPYING which comes with ;;; the distribution. @@ -13,7 +14,7 @@ ;; Emacs Lisp library called pop3.el by Richard Pieri which includes ;; APOP support. ;; -;; * Shriram Krishnamurth has written a POP3 library for MzScheme (as +;; * Shriram Krishnamurthi has written a POP3 library for MzScheme (as ;; well as support for the NNTP protocol, for SMTP, ...). ;; ;; * Siod (a small-footprint Scheme implementation by George Carette) @@ -282,5 +283,3 @@ (define (build-command str . opt-args) (string-join (cons str opt-args))) - -;; EOF