diff options
author | Kjell Wooding <kjell@cvs.openbsd.org> | 2008-06-13 18:51:03 +0000 |
---|---|---|
committer | Kjell Wooding <kjell@cvs.openbsd.org> | 2008-06-13 18:51:03 +0000 |
commit | bc3cf8f2dd4319c8084b83c7207431fb5935e0f6 (patch) | |
tree | cefcb31816f4c28141f9414f75c35493e6661d8b /usr.bin/mg/Makefile | |
parent | 1a9466aff5e77554ccb005209154838280aaffae (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/Makefile')
-rw-r--r-- | usr.bin/mg/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mg/Makefile b/usr.bin/mg/Makefile index 8b610342043..a52df469093 100644 --- a/usr.bin/mg/Makefile +++ b/usr.bin/mg/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.20 2008/06/12 01:58:44 kjell Exp $ +# $OpenBSD: Makefile,v 1.21 2008/06/13 18:51:02 kjell Exp $ PROG= mg @@ -25,6 +25,6 @@ SRCS= cinfo.c fileio.c spawn.c ttyio.c tty.c ttykbd.c \ # # More or less standalone extensions. # -SRCS+= grep.c theo.c mail.c cmode.c +SRCS+= grep.c theo.c cmode.c .include <bsd.prog.mk> |