aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--editors/awk.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/editors/awk.c b/editors/awk.c
index 372a255bd..2005329ad 100644
--- a/editors/awk.c
+++ b/editors/awk.c
@@ -70,7 +70,11 @@
70#endif 70#endif
71 71
72 72
73#define OPTSTR_AWK \ 73/* "+": stop on first non-option:
74 * $ awk 'BEGIN { for(i=1; i<ARGC; ++i) { print i ": " ARGV[i] }}' -argz
75 * 1: -argz
76 */
77#define OPTSTR_AWK "+" \
74 "F:v:*f:*" \ 78 "F:v:*f:*" \
75 IF_FEATURE_AWK_GNU_EXTENSIONS("e:*") \ 79 IF_FEATURE_AWK_GNU_EXTENSIONS("e:*") \
76 "W:" 80 "W:"