Comment fixes.

This commit is contained in:
sperber 2003-01-21 08:14:56 +00:00
parent 81395d1e48
commit 35b837a3b0
1 changed files with 3 additions and 4 deletions

View File

@ -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. ;;; This file is part of the Scheme Untergrund Networking package.
;;; Copyright (c) 1998 by Eric Marsden ;;; Copyright (c) 1998 by Eric Marsden
;;; Copyright (c) 2003 by Mike Sperber <sperber@informatik.uni-tuebingen.de>
;;; For copyright information, see the file COPYING which comes with ;;; For copyright information, see the file COPYING which comes with
;;; the distribution. ;;; the distribution.
@ -13,7 +14,7 @@
;; Emacs Lisp library called pop3.el by Richard Pieri which includes ;; Emacs Lisp library called pop3.el by Richard Pieri which includes
;; APOP support. ;; 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, ...). ;; well as support for the NNTP protocol, for SMTP, ...).
;; ;;
;; * Siod (a small-footprint Scheme implementation by George Carette) ;; * Siod (a small-footprint Scheme implementation by George Carette)
@ -282,5 +283,3 @@
(define (build-command str . opt-args) (define (build-command str . opt-args)
(string-join (cons str opt-args))) (string-join (cons str opt-args)))
;; EOF