diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-03-15 18:14:25 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-03-15 18:14:25 +0000 |
commit | 0d3a02eba76772e59c7832da6108776f576e9f1c (patch) | |
tree | 48d31f686c050abe08cce28c6a1e25c5695c2b3f /util-linux | |
parent | 670bea210e924b46b7cefc7036550dfb20437f5e (diff) | |
download | busybox-w32-0d3a02eba76772e59c7832da6108776f576e9f1c.tar.gz busybox-w32-0d3a02eba76772e59c7832da6108776f576e9f1c.tar.bz2 busybox-w32-0d3a02eba76772e59c7832da6108776f576e9f1c.zip |
Update the documentation so examples are autoincluded in the output text.
Fix up docs/busybox.pod with the latest autogenerated output.
-Erik
Diffstat (limited to 'util-linux')
-rw-r--r-- | util-linux/fbset.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/util-linux/fbset.c b/util-linux/fbset.c index 80711ec9f..41c7f9796 100644 --- a/util-linux/fbset.c +++ b/util-linux/fbset.c | |||
@@ -42,7 +42,6 @@ static const int OPT_INFO = (1 << 1); | |||
42 | static const int OPT_READMODE = (1 << 2); | 42 | static const int OPT_READMODE = (1 << 2); |
43 | 43 | ||
44 | enum { | 44 | enum { |
45 | CMD_HELP = 0, | ||
46 | CMD_FB = 1, | 45 | CMD_FB = 1, |
47 | CMD_DB = 2, | 46 | CMD_DB = 2, |
48 | CMD_GEOMETRY = 3, | 47 | CMD_GEOMETRY = 3, |
@@ -138,7 +137,6 @@ static struct cmdoptions_t { | |||
138 | unsigned char code; | 137 | unsigned char code; |
139 | } g_cmdoptions[] = { | 138 | } g_cmdoptions[] = { |
140 | { | 139 | { |
141 | "-h", 0, CMD_HELP}, { | ||
142 | "-fb", 1, CMD_FB}, { | 140 | "-fb", 1, CMD_FB}, { |
143 | "-db", 1, CMD_DB}, { | 141 | "-db", 1, CMD_DB}, { |
144 | "-a", 0, CMD_ALL}, { | 142 | "-a", 0, CMD_ALL}, { |
@@ -150,10 +148,8 @@ static struct cmdoptions_t { | |||
150 | "-vsync", 1, CMD_VSYNC}, { | 148 | "-vsync", 1, CMD_VSYNC}, { |
151 | "-laced", 1, CMD_LACED}, { | 149 | "-laced", 1, CMD_LACED}, { |
152 | "-double", 1, CMD_DOUBLE}, { | 150 | "-double", 1, CMD_DOUBLE}, { |
153 | "-help", 0, CMD_HELP}, { | ||
154 | "-n", 0, CMD_CHANGE}, { | 151 | "-n", 0, CMD_CHANGE}, { |
155 | #ifdef BB_FEATURE_FBSET_FANCY | 152 | #ifdef BB_FEATURE_FBSET_FANCY |
156 | "-help", 0, CMD_HELP}, { | ||
157 | "-all", 0, CMD_ALL}, { | 153 | "-all", 0, CMD_ALL}, { |
158 | "-xres", 1, CMD_XRES}, { | 154 | "-xres", 1, CMD_XRES}, { |
159 | "-yres", 1, CMD_YRES}, { | 155 | "-yres", 1, CMD_YRES}, { |
@@ -356,8 +352,6 @@ extern int fbset_main(int argc, char **argv) | |||
356 | if (argc - 1 < g_cmdoptions[i].param_count) | 352 | if (argc - 1 < g_cmdoptions[i].param_count) |
357 | show_usage(); | 353 | show_usage(); |
358 | switch (g_cmdoptions[i].code) { | 354 | switch (g_cmdoptions[i].code) { |
359 | case CMD_HELP: | ||
360 | show_usage(); | ||
361 | case CMD_FB: | 355 | case CMD_FB: |
362 | fbdev = argv[1]; | 356 | fbdev = argv[1]; |
363 | break; | 357 | break; |