diff options
| author | Glenn Morris | 2009-01-10 21:50:40 +0000 |
|---|---|---|
| committer | Glenn Morris | 2009-01-10 21:50:40 +0000 |
| commit | eb2ffb185a5fb3c6e2f120c622c61c52bd10c8de (patch) | |
| tree | fc2a847c3173339dc6ff311073f48680152734b4 /lib-src | |
| parent | a8e90bb2674c5284666415d15c5429c0472799eb (diff) | |
| download | emacs-eb2ffb185a5fb3c6e2f120c622c61c52bd10c8de.tar.gz emacs-eb2ffb185a5fb3c6e2f120c622c61c52bd10c8de.zip | |
Comments (minor fixes of some header conventions).
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/cvtmail.c | 37 |
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 | |
| 3 | Copyright (C) 1985, 1994, 2001, 2002, 2003, 2004, 2005, 2006, 2007, | ||
| 4 | 2008, 2009 Free Software Foundation, Inc. | ||
| 5 | |||
| 6 | Author: Larry Kolodney | ||
| 7 | Created: 1985 | ||
| 3 | 8 | ||
| 4 | This file is part of GNU Emacs. | 9 | This file is part of GNU Emacs. |
| 5 | 10 | ||
| @@ -17,21 +22,19 @@ You should have received a copy of the GNU General Public License | |||
| 17 | along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | 22 | along 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 | 27 | Program to convert oldstyle goslings emacs mail directories into |
| 23 | * exist in your home directory, containing individual mail messages in | 28 | gnu-rmail format. Program expects a directory called Messages to |
| 24 | * separate files in the standard gosling emacs mail reader format. | 29 | exist in your home directory, containing individual mail messages in |
| 25 | * | 30 | separate 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. | 32 | Program takes one argument: an output file. This file will contain |
| 28 | * If no output file is mentioned, messages are put in ~/OMAIL. | 33 | all the messages in Messages directory, in berkeley mail format. |
| 29 | * | 34 | If 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. | 36 | In order to get rmail to read the messages, the resulting file must |
| 32 | * | 37 | be 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> |