summaryrefslogtreecommitdiff
path: root/bin/pdksh/exec.c
diff options
context:
space:
mode:
authorJason Downs <downsj@cvs.openbsd.org>1996-08-25 12:38:07 +0000
committerJason Downs <downsj@cvs.openbsd.org>1996-08-25 12:38:07 +0000
commit71ec949299cd46e2df5d811187cac54d7dde2e7b (patch)
tree045591cd74f25607deb7ac1d02fd94b5ccf99c40 /bin/pdksh/exec.c
parent03abe9b1bcd7af738406e8ca96bd745609d006d5 (diff)
Fix problems with compiling without KSH defined, add NOEDIT override.
Diffstat (limited to 'bin/pdksh/exec.c')
-rw-r--r--bin/pdksh/exec.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/pdksh/exec.c b/bin/pdksh/exec.c
index ce4ca7668c5..32e2024206a 100644
--- a/bin/pdksh/exec.c
+++ b/bin/pdksh/exec.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: exec.c,v 1.2 1996/08/19 20:08:50 downsj Exp $ */
+/* $OpenBSD: exec.c,v 1.3 1996/08/25 12:38:00 downsj Exp $ */
/*
* execute command tree
@@ -1459,7 +1459,7 @@ herein(hname, sub)
return fd;
}
-#ifdef KSH
+#if defined(KSH) || defined(EDIT)
/*
* ksh special - the select command processing section
* print the args in column form - assuming that we can
@@ -1562,7 +1562,7 @@ pr_menu(ap)
return n;
}
-#endif /* KSH */
+#endif /* KSH || EDIT */
#ifdef KSH
/*