-;;; mail-header.el --- Mail header parsing, merging, formatting
+;;; mailheader.el --- Mail header parsing, merging, formatting
;; Copyright (C) 1996 by Free Software Foundation, Inc.
;;; 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,
;;; Code:
-(require 'cl)
+(eval-when-compile
+ (require 'cl))
;; Make the byte-compiler shut up.
(defvar headers)
(provide 'mailheader)
-;;; mail-header.el ends here
+;;; mailheader.el ends here