aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
authorGlenn Morris2009-01-10 21:50:40 +0000
committerGlenn Morris2009-01-10 21:50:40 +0000
commiteb2ffb185a5fb3c6e2f120c622c61c52bd10c8de (patch)
treefc2a847c3173339dc6ff311073f48680152734b4 /lib-src
parenta8e90bb2674c5284666415d15c5429c0472799eb (diff)
downloademacs-eb2ffb185a5fb3c6e2f120c622c61c52bd10c8de.tar.gz
emacs-eb2ffb185a5fb3c6e2f120c622c61c52bd10c8de.zip
Comments (minor fixes of some header conventions).
Diffstat (limited to 'lib-src')
-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 da21bbd1f97..1c262c99aef 100644
--- a/lib-src/cvtmail.c
+++ b/lib-src/cvtmail.c
@@ -1,5 +1,10 @@
1/* Copyright (C) 1985, 1994, 2001, 2002, 2003, 2004, 1/* cvtmail.c --- convert Gosling Emacs mail directories into RMAIL format
2 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. 2
3Copyright (C) 1985, 1994, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
4 2008, 2009 Free Software Foundation, Inc.
5
6Author: Larry Kolodney
7Created: 1985
3 8
4This file is part of GNU Emacs. 9This file is part of GNU Emacs.
5 10
@@ -17,21 +22,19 @@ You should have received a copy of the GNU General Public License
17along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ 22along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
18 23
19 24
20/* cvtmail: 25/* Commentary:
21 * Program to convert oldstyle goslings emacs mail directories into 26
22 * gnu-rmail format. Program expects a directory called Messages to 27Program to convert oldstyle goslings emacs mail directories into
23 * exist in your home directory, containing individual mail messages in 28gnu-rmail format. Program expects a directory called Messages to
24 * separate files in the standard gosling emacs mail reader format. 29exist in your home directory, containing individual mail messages in
25 * 30separate files in the standard gosling emacs mail reader format.
26 * Program takes one argument: an output file. This file will contain 31
27 * all the messages in Messages directory, in berkeley mail format. 32Program takes one argument: an output file. This file will contain
28 * If no output file is mentioned, messages are put in ~/OMAIL. 33all the messages in Messages directory, in berkeley mail format.
29 * 34If no output file is mentioned, messages are put in ~/OMAIL.
30 * In order to get rmail to read the messages, the resulting file must 35
31 * be mv'ed to ~/mbox, and then have rmail invoked on them. 36In order to get rmail to read the messages, the resulting file must
32 * 37be mv'ed to ~/mbox, and then have rmail invoked on them. */
33 * Author: Larry Kolodney, 1985
34 */
35 38
36#ifdef HAVE_CONFIG_H 39#ifdef HAVE_CONFIG_H
37#include <config.h> 40#include <config.h>