2001-12-20 15:00:00 ShengHuo ZHU <zsh@cs.rochester.edu>
authorShengHuo ZHU <zsh@cs.rochester.edu>
Thu, 20 Dec 2001 20:40:32 +0000 (20:40 +0000)
committerShengHuo ZHU <zsh@cs.rochester.edu>
Thu, 20 Dec 2001 20:40:32 +0000 (20:40 +0000)
* nnmaildir.el: Copyright changes. Require cl only at compile time.

lisp/ChangeLog
lisp/nnmaildir.el

index 5653465..9126bd0 100644 (file)
@@ -1,3 +1,7 @@
+2001-12-20 15:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
+
+       * nnmaildir.el: Copyright changes. Require cl only at compile time.
+
 2001-12-20  Simon Josefsson  <jas@extundo.com>
 
        * nnimap.el (top-level): Don't require cl.  Suggested by ShengHuo
index 1f58d8e..b4c0a8f 100644 (file)
@@ -1,12 +1,33 @@
-;;; nnmaildir.el: maildir backend for Gnus                   -*- emacs-lisp -*-
+;;; nnmaildir.el --- maildir backend for Gnus
+;; Copyright (c) 2001 Free Software Foundation, Inc.
+;; Copyright (c) 2000, 2001 Paul Jarc <prj@po.cwru.edu>
+
+;; Author: Paul Jarc <prj@po.cwru.edu>
+
+;; This file is part of GNU Emacs.
+
+;; GNU Emacs is free software; you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation; either version 2, or (at your option)
+;; any later version.
+
+;; GNU Emacs is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with GNU Emacs; see the file COPYING.  If not, write to the
+;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+;; Boston, MA 02111-1307, USA.
+
+;;; Commentary:
+
 ;;; <URL:http://multivac.cwru.edu./nnmaildir/>
-;;; This software is copyright by Paul Jarc <prj@po.cwru.edu>.  It is
-;;; entirely devoid of warranty.  Permission is granted to everyone to
-;;; use, modify, copy, and redistribute it as specified by the GNU
-;;; General Public License, version 2 or (if desired) any later version.
+
+;;; Code:
 
 (eval-and-compile
-  (require 'cl)
   (require 'nnheader)
   (require 'gnus)
   (require 'gnus-util)
@@ -15,6 +36,7 @@
   (require 'gnus-int)
   (require 'message))
 (eval-when-compile
+  (require 'cl)
   (require 'nnmail))
 
 (gnus-declare-backend "nnmaildir" 'mail 'respool 'address)
@@ -1638,3 +1660,5 @@ by nnmaildir-request-article.")
   t)
 
 (provide 'nnmaildir)
+
+;;; nnmaildir.el ends here