diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1996-08-25 12:38:07 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1996-08-25 12:38:07 +0000 |
commit | 71ec949299cd46e2df5d811187cac54d7dde2e7b (patch) | |
tree | 045591cd74f25607deb7ac1d02fd94b5ccf99c40 /bin/pdksh/conf-end.h | |
parent | 03abe9b1bcd7af738406e8ca96bd745609d006d5 (diff) |
Fix problems with compiling without KSH defined, add NOEDIT override.
Diffstat (limited to 'bin/pdksh/conf-end.h')
-rw-r--r-- | bin/pdksh/conf-end.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/bin/pdksh/conf-end.h b/bin/pdksh/conf-end.h index f7d076d4598..8b65cb7d1df 100644 --- a/bin/pdksh/conf-end.h +++ b/bin/pdksh/conf-end.h @@ -1,4 +1,4 @@ -/* $OpenBSD: conf-end.h,v 1.1 1996/08/14 06:19:12 downsj Exp $ */ +/* $OpenBSD: conf-end.h,v 1.2 1996/08/25 12:37:58 downsj Exp $ */ /* * End of configuration stuff for PD ksh. @@ -10,6 +10,13 @@ # undef EDIT #endif +/* Super small configuration-- no editing. */ +#if defined(EDIT) && defined(NOEDIT) +# undef EDIT +# undef EMACS +# undef VI +#endif + /* Editing implies history */ #if defined(EDIT) && !defined(HISTORY) # define HISTORY |