summaryrefslogtreecommitdiff
path: root/lisp/mail/unrmail.el
diff options
context:
space:
mode:
authorEric S. Raymond <esr@snark.thyrsus.com>1993-03-17 17:17:05 +0000
committerEric S. Raymond <esr@snark.thyrsus.com>1993-03-17 17:17:05 +0000
commit13bf1df1ae194aa1873ec4d1a1741c32347b246b (patch)
tree0fa2dd164dedb3cf96303575776e4c278748a7d5 /lisp/mail/unrmail.el
parent515f023693c1d4950cd0d7121bd5a5c219ec7e8b (diff)
downloademacs-13bf1df1ae194aa1873ec4d1a1741c32347b246b.tar.gz
Add standard library headers.
Diffstat (limited to 'lisp/mail/unrmail.el')
-rw-r--r--lisp/mail/unrmail.el5
1 files changed, 5 insertions, 0 deletions
diff --git a/lisp/mail/unrmail.el b/lisp/mail/unrmail.el
index b77b445d88f..0850d4be05e 100644
--- a/lisp/mail/unrmail.el
+++ b/lisp/mail/unrmail.el
@@ -1,4 +1,5 @@
;;; unrmail.el --- convert Rmail files to mailbox files.
+
;;; Copyright (C) 1992 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
@@ -17,6 +18,8 @@
;; along with GNU Emacs; see the file COPYING. If not, write to
;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
+;;; Code:
+
(defvar command-line-args-left) ;Avoid 'free variable' warning
;;;###autoload
@@ -47,3 +50,5 @@ For example, invoke `emacs -batch -f batch-unrmail RMAIL'."
(rmail-show-message 1)
(while (not (rmail-output to-file))
(setq message-count (1+ message-count)))))
+
+;;; unrmail.el ends here