summaryrefslogtreecommitdiff
path: root/lisp/mail
diff options
context:
space:
mode:
authorEric S. Raymond <esr@snark.thyrsus.com>1992-05-30 21:11:25 +0000
committerEric S. Raymond <esr@snark.thyrsus.com>1992-05-30 21:11:25 +0000
commitc88ab9ce4a0dbacb1f5bd272c1e7419f1e0f4b9d (patch)
tree0dddeeff29c5a9f505aa940c413efc05d73964a6 /lisp/mail
parentd501f51645d966e8fe2febba698779996b33eb21 (diff)
downloademacs-c88ab9ce4a0dbacb1f5bd272c1e7419f1e0f4b9d.tar.gz
emacs-c88ab9ce4a0dbacb1f5bd272c1e7419f1e0f4b9d.tar.bz2
emacs-c88ab9ce4a0dbacb1f5bd272c1e7419f1e0f4b9d.zip
*** empty log message ***
Diffstat (limited to 'lisp/mail')
-rw-r--r--lisp/mail/rfc822.el4
-rw-r--r--lisp/mail/rmail.el4
-rw-r--r--lisp/mail/rmailedit.el4
-rw-r--r--lisp/mail/rmailkwd.el5
-rw-r--r--lisp/mail/rmailmsc.el4
-rw-r--r--lisp/mail/rmailout.el5
-rw-r--r--lisp/mail/rmailsort.el5
-rw-r--r--lisp/mail/rmailsum.el5
-rw-r--r--lisp/mail/rnews.el7
-rw-r--r--lisp/mail/rnewspost.el5
-rw-r--r--lisp/mail/sendmail.el4
11 files changed, 41 insertions, 11 deletions
diff --git a/lisp/mail/rfc822.el b/lisp/mail/rfc822.el
index ac63ce63687..2a67e4e69bb 100644
--- a/lisp/mail/rfc822.el
+++ b/lisp/mail/rfc822.el
@@ -1,4 +1,5 @@
-;; Hairy rfc822 parser for mail and news and suchlike
+;;; rfc822.el --- hairy rfc822 parser for mail and news and suchlike
+
;; Copyright (C) 1986-1990 Free Software Foundation, Inc.
;; Author Richard Mlynarik.
@@ -304,3 +305,4 @@
(provide 'rfc822)
+;;; rfc822.el ends here
diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el
index c45f7552aae..f4a6656297c 100644
--- a/lisp/mail/rmail.el
+++ b/lisp/mail/rmail.el
@@ -1,4 +1,5 @@
-;; "RMAIL" mail reader for Emacs.
+;;; rmail.el --- main code of "RMAIL" mail reader for Emacs.
+
;; Copyright (C) 1985, 1986, 1987, 1988, 1991, 1992 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
@@ -1611,3 +1612,4 @@ Leaves original message, deleted, before the undigestified messages."
(provide 'rmail)
+;;; rmail.el ends here
diff --git a/lisp/mail/rmailedit.el b/lisp/mail/rmailedit.el
index 41a31464889..fa29b50c084 100644
--- a/lisp/mail/rmailedit.el
+++ b/lisp/mail/rmailedit.el
@@ -1,4 +1,5 @@
-;; "RMAIL edit mode" Edit the current message.
+;;; rmailedit.el --- "RMAIL edit mode" Edit the current message.
+
;; Copyright (C) 1985 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
@@ -103,3 +104,4 @@ to return to regular RMAIL:
(insert rmail-old-text)
(rmail-cease-edit))
+;;; rmailedit.el ends here
diff --git a/lisp/mail/rmailkwd.el b/lisp/mail/rmailkwd.el
index 11b4cf54813..b8ad6a59f58 100644
--- a/lisp/mail/rmailkwd.el
+++ b/lisp/mail/rmailkwd.el
@@ -1,4 +1,5 @@
-;; "RMAIL" mail reader for Emacs.
+;;; rmailkwd.el --- part of the "RMAIL" mail reader for Emacs.
+
;; Copyright (C) 1985, 1988 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
@@ -262,3 +263,5 @@ With prefix argument N moves forward N messages with these labels."
(narrow-to-region (- (buffer-size) omin)
(- (buffer-size) omax)))))
keyword))
+
+;;; rmailkwd.el ends here
diff --git a/lisp/mail/rmailmsc.el b/lisp/mail/rmailmsc.el
index c57b15c4c3a..cd042ae94c0 100644
--- a/lisp/mail/rmailmsc.el
+++ b/lisp/mail/rmailmsc.el
@@ -1,3 +1,5 @@
+;;; rmailmsc.el --- miscellaneous support functions for the RMAIL mail reader
+
;; Copyright (C) 1985 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
@@ -43,3 +45,5 @@ If FILE-NAME is empty, remove any inbox list."
(insert "Mail: " file-name "\n"))))))
(setq rmail-inbox-list (rmail-parse-file-inboxes))
(rmail-show-message rmail-current-message))
+
+;;; rmailmsc.el ends here
diff --git a/lisp/mail/rmailout.el b/lisp/mail/rmailout.el
index a4018b5cf52..5606eccbe87 100644
--- a/lisp/mail/rmailout.el
+++ b/lisp/mail/rmailout.el
@@ -1,4 +1,5 @@
-;; "RMAIL" mail reader for Emacs: output message to a file.
+;;; rmailout.el --- "RMAIL" mail reader for Emacs: output message to a file.
+
;; Copyright (C) 1985, 1987 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
@@ -180,3 +181,5 @@ starting with the current one. Deleted messages are skipped and don't count."
(rmail-delete-forward)
(if (> count 0)
(rmail-next-undeleted-message 1)))))
+
+;;; rmailout.el ends here
diff --git a/lisp/mail/rmailsort.el b/lisp/mail/rmailsort.el
index 3bc00ddbf1b..d17c5fa6b42 100644
--- a/lisp/mail/rmailsort.el
+++ b/lisp/mail/rmailsort.el
@@ -1,4 +1,5 @@
-;;; Rmail: sort messages.
+;;; rmailsort.el --- Rmail: sort messages.
+
;; Copyright (C) 1990 Masanobu UMEDA
;; umerin@tc.Nagasaki.GO.JP?
@@ -202,3 +203,5 @@ Arguments are MSG and FIELD."
year-string))
(provide 'rmailsort)
+
+;;; rmailsort.el ends here
diff --git a/lisp/mail/rmailsum.el b/lisp/mail/rmailsum.el
index fc8854f153d..12f6cf527a3 100644
--- a/lisp/mail/rmailsum.el
+++ b/lisp/mail/rmailsum.el
@@ -1,4 +1,5 @@
-;; "RMAIL" mail reader for Emacs.
+;;; rmailsum.el --- "RMAIL" mail reader for Emacs.
+
;; Copyright (C) 1985 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
@@ -472,3 +473,5 @@ Entering this mode calls value of hook variable rmail-summary-mode-hook."
(delete-window (selected-window))))
;; Switch to the rmail buffer in this window.
(switch-to-buffer rmail-buffer)))
+
+;;; rmailsum.el ends here
diff --git a/lisp/mail/rnews.el b/lisp/mail/rnews.el
index d96738af30f..4bec3713f5e 100644
--- a/lisp/mail/rnews.el
+++ b/lisp/mail/rnews.el
@@ -1,4 +1,5 @@
-;;; USENET news reader for gnu emacs
+;;; rnews.el --- USENET news reader for gnu emacs
+
;; Copyright (C) 1985, 1986, 1987 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
@@ -977,4 +978,6 @@ Mail and USENET news headers are not rotated."
(caesar-region rotnum)
(setq buffer-read-only buffer-status))))
-(provide 'rnews) (provide 'rnews)
+(provide 'rnews)
+
+;;; rnews.el ends here
diff --git a/lisp/mail/rnewspost.el b/lisp/mail/rnewspost.el
index adb65e6f3ab..91077ed311a 100644
--- a/lisp/mail/rnewspost.el
+++ b/lisp/mail/rnewspost.el
@@ -1,4 +1,5 @@
-;;; USENET news poster/mailer for GNU Emacs
+;;; rnewspost.el --- USENET news poster/mailer for GNU Emacs
+
;; Copyright (C) 1985, 1986, 1987 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
@@ -388,3 +389,5 @@ While composing the message, use \\[news-reply-yank-original] to yank the
original message into it."
(interactive)
(mail-other-window nil nil nil nil nil (current-buffer)))
+
+;;; rnewspost.el ends here
diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el
index 2a7f21d77eb..2093c9366ee 100644
--- a/lisp/mail/sendmail.el
+++ b/lisp/mail/sendmail.el
@@ -1,4 +1,5 @@
-;; Mail sending commands for Emacs.
+;;; sendmail.el --- mail sending commands for Emacs.
+
;; Copyright (C) 1985, 1986, 1992 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
@@ -662,3 +663,4 @@ The seventh argument ACTIONS is a list of actions to take
(provide 'sendmail)
+;;; sendmail.el ends here