aboutsummaryrefslogtreecommitdiff
path: root/toys/seq.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2008-06-26 22:48:43 -0500
committerRob Landley <rob@landley.net>2008-06-26 22:48:43 -0500
commitb1487dc9ed8c892afde94a8ac04350e3ca0e7074 (patch)
treef9e041f48ececa6e63decbd2957394275f81d3e6 /toys/seq.c
parentf901f24334ee8c0f03b72c2a1ad365b61334db5a (diff)
downloadtoybox-b1487dc9ed8c892afde94a8ac04350e3ca0e7074.tar.gz
Option parsing: stopearly is now a ^ prefix (not +), and an option string with
no flags auto-enables stopearly (so seq doesn't have to specify it to avoid having negative number arguments eaten by the option parsing logic).
Diffstat (limited to 'toys/seq.c')
-rw-r--r--toys/seq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/seq.c b/toys/seq.c
index 8eb8fb8e..ced5e8fb 100644
--- a/toys/seq.c
+++ b/toys/seq.c
@@ -6,7 +6,7 @@
*
* Not in SUSv3. (Don't ask me why not.)
-USE_SEQ(NEWTOY(seq, "<1>3?+", TOYFLAG_USR|TOYFLAG_BIN))
+USE_SEQ(NEWTOY(seq, "<1>3?", TOYFLAG_USR|TOYFLAG_BIN))
config SEQ
bool "seq"