diff options
author | lum <lum@cvs.openbsd.org> | 2012-03-14 13:56:36 +0000 |
---|---|---|
committer | lum <lum@cvs.openbsd.org> | 2012-03-14 13:56:36 +0000 |
commit | 765ad8e4544f22532ce5e20a58eb1b64877ecc2b (patch) | |
tree | fcb2d24e2fabf1fd3ecd1659d2f1274ff4b653fd /usr.bin/mg/help.c | |
parent | e0b5d824208b47eaf3d8e82f8121315977c5d1bb (diff) |
Remove the NO_HELP conditional directives. If defined, mg will not compile and
has not done so for numerous years. Not hard to fix, but just remove anyway.
ok kjell@ millert@
Diffstat (limited to 'usr.bin/mg/help.c')
-rw-r--r-- | usr.bin/mg/help.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.bin/mg/help.c b/usr.bin/mg/help.c index bbf63775ae7..b42b5273a47 100644 --- a/usr.bin/mg/help.c +++ b/usr.bin/mg/help.c @@ -1,4 +1,4 @@ -/* $OpenBSD: help.c,v 1.32 2009/06/04 23:39:37 kjell Exp $ */ +/* $OpenBSD: help.c,v 1.33 2012/03/14 13:56:35 lum Exp $ */ /* This file is in the public domain. */ @@ -9,7 +9,6 @@ #include "def.h" #include "funmap.h" -#ifndef NO_HELP #include "kbd.h" #include "key.h" #ifndef NO_MACRO @@ -233,4 +232,3 @@ findbind(KEYMAP *map, PF fun, char *buf, size_t len) } return (FALSE); } -#endif /* !NO_HELP */ |