diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2017-08-01 14:30:08 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2017-08-01 14:30:08 +0000 |
commit | e2f55255d00b23da2902fabd8fe5f1af32c9c421 (patch) | |
tree | a2206a71751ed79120cd6eb56a0f3e5ac74ba884 /bin/ksh/config.h | |
parent | f53339b3196b1f53eedc035701bbbdd898f1dbf2 (diff) |
Disable ksh VI-editing mode on the install media. We need the space
savings.
Diffstat (limited to 'bin/ksh/config.h')
-rw-r--r-- | bin/ksh/config.h | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/bin/ksh/config.h b/bin/ksh/config.h index 8feecb3a552..abf6b6374a7 100644 --- a/bin/ksh/config.h +++ b/bin/ksh/config.h @@ -1,4 +1,4 @@ -/* $OpenBSD: config.h,v 1.15 2015/09/14 16:10:55 nicm Exp $ */ +/* $OpenBSD: config.h,v 1.16 2017/08/01 14:30:05 deraadt Exp $ */ /* config.h. NOT generated automatically. */ @@ -11,12 +11,6 @@ #ifndef CONFIG_H #define CONFIG_H -/* Include emacs editing? */ -#define EMACS 1 - -/* Include vi editing? */ -#define VI 1 - /* Include job control? */ #define JOBS 1 @@ -42,13 +36,6 @@ # 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 |