From 82fdff00239196e97958aceb6139f650fd9122ee Mon Sep 17 00:00:00 2001 From: Christoph Lohmann <20h@r-36.net> Date: Wed, 26 Dec 2012 00:02:50 +0100 Subject: Fixing the position parameter and adding the documentation for it. --- tabbed.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'tabbed.c') diff --git a/tabbed.c b/tabbed.c index 308776e..b08d4f4 100644 --- a/tabbed.c +++ b/tabbed.c @@ -1089,7 +1089,7 @@ char *argv0; void usage(void) { - die("usage: %s [-dfhsv] [-n name] [-p [+/-]pos] [-r narg]" + die("usage: %s [-dfhsv] [-n name] [-p [s+/-]pos] [-r narg]" " command...\n", argv0); } @@ -1114,9 +1114,12 @@ main(int argc, char *argv[]) { break; case 'p': pstr = EARGF(usage()); - if (pstr[0] == '-' || pstr[0] == '+') + if(pstr[0] == 's') { npisrelative = True; - newposition = atoi(pstr); + newposition = atoi(&pstr[1]); + } else { + newposition = atoi(pstr); + } break; case 'r': replace = atoi(EARGF(usage())); -- cgit v1.2.3