]> git.marmaro.de Git - mmh/commitdiff
Don't require a length for switch prefixes without good reason.
authormarkus schnalke <meillo@marmaro.de>
Sat, 5 May 2012 05:55:20 +0000 (07:55 +0200)
committermarkus schnalke <meillo@marmaro.de>
Sat, 5 May 2012 05:55:20 +0000 (07:55 +0200)
E.g. there's no reason (anymore?) to require the user to type `whatnow -prom'
when `whatnow -p' is already distinguishing.

uip/anno.c
uip/new.c
uip/rcvdist.c
uip/scan.c
uip/whatnow.c

index 7ede7e0558531b3ca489a2ff14fb76bef6d1a72b..3958eb148e6bf9332d401bec70de45b7eb21ca0b 100644 (file)
@@ -34,17 +34,17 @@ static struct swit switches[] = {
 #define HELPSW 5
        { "help", 0 },
 #define LISTSW 6
-       { "list", 1 },
+       { "list", 0 },
 #define DELETESW 7
-       { "delete", 2 },
+       { "delete", 0 },
 #define NUMBERSW 8
-       { "number", 2 },
+       { "number", 0 },
 #define APPENDSW 9
-       { "append", 1 },
+       { "append", 0 },
 #define PRESERVESW 10
-       { "preserve", 1 },
+       { "preserve", 0 },
 #define NOPRESERVESW 11
-       { "nopreserve", 3 },
+       { "nopreserve", 0 },
        { NULL, 0 }
 };
 
index de3c0be40c8e92c8ab00f53024df2d91af1adb6f..7c3191aa93c519dab359a98e8c97d9486632d76c 100644 (file)
--- a/uip/new.c
+++ b/uip/new.c
 
 static struct swit switches[] = {
 #define MODESW 0
-       { "mode", 1 },
+       { "mode", 0 },
 #define FOLDERSSW 1
-       { "folders", 1 },
+       { "folders", 0 },
 #define VERSIONSW 2
-       { "Version", 1 },
+       { "Version", 0 },
 #define HELPSW 3
-       { "help", 1 },
+       { "help", 0 },
        { NULL, 0 }
 };
 
index d409b5cb59de4532ce5748d25ad3d6724d24b961..fa2a170b1733ff2d5858aed223497687869a6118 100644 (file)
@@ -14,7 +14,7 @@
 
 static struct swit switches[] = {
 #define FORMSW  0
-       { "form formfile",  4 },
+       { "form formfile",  0 },
 #define VERSIONSW  1
        { "Version", 0 },
 #define HELPSW  2
index 085cc7fa7ea3c54a5b206356520bd53277604074..269193ffc039b1d8372a8beea15222390c5e529f 100644 (file)
@@ -19,7 +19,7 @@ static struct swit switches[] = {
 #define WIDTHSW  1
        { "width columns", 0 },
 #define FILESW  2
-       { "file file", 4 },
+       { "file file", 0 },
 #define VERSIONSW 3
        { "Version", 0 },
 #define HELPSW  4
index e3a411adfd95d2d967142a0f9e5d2db888c2510d..ead1bd5cd47aa232d8c8d552d54956a0a0bda282 100644 (file)
@@ -46,7 +46,7 @@ static struct swit whatnowswitches[] = {
 #define EDITRSW  0
        { "editor editor", 0 },
 #define PRMPTSW  1
-       { "prompt string", 4 },
+       { "prompt string", 0 },
 #define VERSIONSW  2
        { "Version", 0 },
 #define HELPSW  3