aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src/cvtmail.c
diff options
context:
space:
mode:
authorGlenn Morris <[email protected]>2009-01-10 21:50:40 +0000
committerGlenn Morris <[email protected]>2009-01-10 21:50:40 +0000
commiteb2ffb185a5fb3c6e2f120c622c61c52bd10c8de (patch)
treefc2a847c3173339dc6ff311073f48680152734b4 /lib-src/cvtmail.c
parenta8e90bb2674c5284666415d15c5429c0472799eb (diff)
Comments (minor fixes of some header conventions).
Diffstat (limited to 'lib-src/cvtmail.c')
-rw-r--r--lib-src/cvtmail.c37
1 files changed, 20 insertions, 17 deletions
diff --git a/lib-src/cvtmail.c b/lib-src/cvtmail.c
index da21bbd1f9..1c262c99ae 100644
--- a/lib-src/cvtmail.c
+++ b/lib-src/cvtmail.c
@@ -1,5 +1,10 @@
-/* Copyright (C) 1985, 1994, 2001, 2002, 2003, 2004,
- 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+/* cvtmail.c --- convert Gosling Emacs mail directories into RMAIL format
+
+Copyright (C) 1985, 1994, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
+ 2008, 2009 Free Software Foundation, Inc.
+
+Author: Larry Kolodney
+Created: 1985
This file is part of GNU Emacs.
@@ -17,21 +22,19 @@ You should have received a copy of the GNU General Public License
along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
-/* cvtmail:
- * Program to convert oldstyle goslings emacs mail directories into
- * gnu-rmail format. Program expects a directory called Messages to
- * exist in your home directory, containing individual mail messages in
- * separate files in the standard gosling emacs mail reader format.
- *
- * Program takes one argument: an output file. This file will contain
- * all the messages in Messages directory, in berkeley mail format.
- * If no output file is mentioned, messages are put in ~/OMAIL.
- *
- * In order to get rmail to read the messages, the resulting file must
- * be mv'ed to ~/mbox, and then have rmail invoked on them.
- *
- * Author: Larry Kolodney, 1985
- */
+/* Commentary:
+
+Program to convert oldstyle goslings emacs mail directories into
+gnu-rmail format. Program expects a directory called Messages to
+exist in your home directory, containing individual mail messages in
+separate files in the standard gosling emacs mail reader format.
+
+Program takes one argument: an output file. This file will contain
+all the messages in Messages directory, in berkeley mail format.
+If no output file is mentioned, messages are put in ~/OMAIL.
+
+In order to get rmail to read the messages, the resulting file must
+be mv'ed to ~/mbox, and then have rmail invoked on them. */
#ifdef HAVE_CONFIG_H
#include <config.h>