]> git.eshelyaron.com Git - emacs.git/commitdiff
(require 'cl) is only necessary when compiling.
authorErik Naggum <erik@naggum.no>
Tue, 2 Jul 1996 00:01:05 +0000 (00:01 +0000)
committerErik Naggum <erik@naggum.no>
Tue, 2 Jul 1996 00:01:05 +0000 (00:01 +0000)
lisp/mail/mailheader.el

index fa0265faf4134f8de8c75b9106e67fcf61a32f57..142b29c4f357567e7fc2b4b52af6592e3e8cb3d5 100644 (file)
@@ -1,4 +1,4 @@
-;;; mail-header.el --- Mail header parsing, merging, formatting
+;;; mailheader.el --- Mail header parsing, merging, formatting
 
 ;; Copyright (C) 1996 by Free Software Foundation, Inc.
 
@@ -25,7 +25,7 @@
 ;;; Commentary:
 
 ;; This package provides an abstraction to RFC822-style messages, used in
-;; mail news, and some other systems.  The simple syntactic rules for such
+;; mail, news, and some other systems.  The simple syntactic rules for such
 ;; headers, such as quoting and line folding, are routinely reimplemented
 ;; in many individual packages.  This package removes the need for this
 ;; redundancy by representing message headers as association lists,
@@ -46,7 +46,8 @@
 
 ;;; Code:
 
-(require 'cl)
+(eval-when-compile
+  (require 'cl))
 
 ;; Make the byte-compiler shut up.
 (defvar headers)
@@ -179,4 +180,4 @@ A key of nil has as its value a list of defaulted headers to ignore."
 
 (provide 'mailheader)
 
-;;; mail-header.el ends here
+;;; mailheader.el ends here