summaryrefslogtreecommitdiff
path: root/usr.bin/vi/common
diff options
context:
space:
mode:
authorIgor Sobrado <sobrado@cvs.openbsd.org>2009-01-28 21:30:44 +0000
committerIgor Sobrado <sobrado@cvs.openbsd.org>2009-01-28 21:30:44 +0000
commit54659ec20398b406f4b95914d7e644680d1fdefd (patch)
treed7b6b4efede7a75922c32eb779ff7678ecd8cdd5 /usr.bin/vi/common
parent725c0c93448018cca84d236e7d971b7fe7359210 (diff)
remove undocumented support for "-e" in ex(1).
millert@ says that neither 4.4BSD nor Solaris ex(1) accept this flag, so it is safe to reject it too. ok jsing@
Diffstat (limited to 'usr.bin/vi/common')
-rw-r--r--usr.bin/vi/common/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/vi/common/main.c b/usr.bin/vi/common/main.c
index 647b03e7a30..099a346bc29 100644
--- a/usr.bin/vi/common/main.c
+++ b/usr.bin/vi/common/main.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: main.c,v 1.16 2009/01/28 13:02:22 sobrado Exp $ */
+/* $OpenBSD: main.c,v 1.17 2009/01/28 21:30:43 sobrado Exp $ */
/*-
* Copyright (c) 1992, 1993, 1994
@@ -127,11 +127,11 @@ editor(gp, argc, argv)
static const char *optstr[3] = {
#ifdef DEBUG
- "c:D:eFlRrSsT:t:vw:",
+ "c:D:FlRrSsT:t:vw:",
"c:D:eFlRrST:t:w:",
"c:D:eFlrST:t:w:"
#else
- "c:eFlRrSst:vw:",
+ "c:FlRrSst:vw:",
"c:eFlRrSt:w:",
"c:eFlrSt:w:"
#endif