# HG changeset patch # User Erik Naggum # Date 836265665 0 # Node ID 1808d2672d00850ad34c0ba484c23a7d2076aacf # Parent 690a439bcc0e0891a1cbdd89894c1847d1880db5 (require 'cl) is only necessary when compiling. diff -r 690a439bcc0e -r 1808d2672d00 lisp/mail/mailheader.el --- a/lisp/mail/mailheader.el Mon Jul 01 15:17:24 1996 +0000 +++ b/lisp/mail/mailheader.el Tue Jul 02 00:01:05 1996 +0000 @@ -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 @@ (provide 'mailheader) -;;; mail-header.el ends here +;;; mailheader.el ends here