diff options
author | Erik Naggum <erik@naggum.no> | 1996-07-02 00:01:05 +0000 |
---|---|---|
committer | Erik Naggum <erik@naggum.no> | 1996-07-02 00:01:05 +0000 |
commit | c523a40cb800876816e49975bac1061ab3f1f373 (patch) | |
tree | 4de6b02475cce99049c38b470fb4c688e0bb9895 /lisp | |
parent | d78206c98df5437d18438f2c8c3f76505e31fc9d (diff) | |
download | emacs-c523a40cb800876816e49975bac1061ab3f1f373.tar.gz |
(require 'cl) is only necessary when compiling.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/mail/mailheader.el | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lisp/mail/mailheader.el b/lisp/mail/mailheader.el index fa0265faf41..142b29c4f35 100644 --- a/lisp/mail/mailheader.el +++ b/lisp/mail/mailheader.el @@ -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 |