summaryrefslogtreecommitdiff
path: root/usr.bin/mg/main.c
diff options
context:
space:
mode:
authorKjell Wooding <kjell@cvs.openbsd.org>2008-06-13 18:51:03 +0000
committerKjell Wooding <kjell@cvs.openbsd.org>2008-06-13 18:51:03 +0000
commitbc3cf8f2dd4319c8084b83c7207431fb5935e0f6 (patch)
treecefcb31816f4c28141f9414f75c35493e6661d8b /usr.bin/mg/main.c
parent1a9466aff5e77554ccb005209154838280aaffae (diff)
Remove mail-mode. It was a buggy reimplementation of auto-fill-mode.
If you use this, change your habits (and .mg) to use the following commands instead: mail-mode => auto-fill-mode mail-set-margin => set-fill-column ok henning@. Will also "fix" debian bug #460189
Diffstat (limited to 'usr.bin/mg/main.c')
-rw-r--r--usr.bin/mg/main.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.bin/mg/main.c b/usr.bin/mg/main.c
index 961690f2b02..9e54a18c834 100644
--- a/usr.bin/mg/main.c
+++ b/usr.bin/mg/main.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: main.c,v 1.59 2008/06/13 18:41:57 kjell Exp $ */
+/* $OpenBSD: main.c,v 1.60 2008/06/13 18:51:02 kjell Exp $ */
/* This file is in the public domain. */
@@ -75,14 +75,12 @@ main(int argc, char **argv)
{
extern void grep_init(void);
extern void theo_init(void);
- extern void mail_init(void);
extern void cmode_init(void);
extern void dired_init(void);
dired_init();
grep_init();
theo_init();
- mail_init();
cmode_init();
}