diff options
author | Aaron Lehmann <aaronl@vitelius.com> | 2002-08-23 22:09:50 +0000 |
---|---|---|
committer | Aaron Lehmann <aaronl@vitelius.com> | 2002-08-23 22:09:50 +0000 |
commit | 933d10d308d67708b79f78dc00ae705af6a18f43 (patch) | |
tree | 31cbdc5af966a0893a882d145cead48a08afbf0a | |
parent | fbef225c4b8d0fd3f1d34e3b0f80bf8e236861e6 (diff) | |
download | busybox-w32-933d10d308d67708b79f78dc00ae705af6a18f43.tar.gz busybox-w32-933d10d308d67708b79f78dc00ae705af6a18f43.tar.bz2 busybox-w32-933d10d308d67708b79f78dc00ae705af6a18f43.zip |
Remove extrangeous backslashes that were probably introduced by
someone joining lines and forgetting to remove the backslash escaping
the newline.
-rw-r--r-- | include/usage.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/usage.h b/include/usage.h index a5ae4c889..ffc3724be 100644 --- a/include/usage.h +++ b/include/usage.h | |||
@@ -217,7 +217,7 @@ | |||
217 | #define dc_example_usage \ | 217 | #define dc_example_usage \ |
218 | "$ dc 2 2 +\n" \ | 218 | "$ dc 2 2 +\n" \ |
219 | "4\n" \ | 219 | "4\n" \ |
220 | "$ dc 8 8 \* 2 2 + /\n" \ | 220 | "$ dc 8 8 * 2 2 + /\n" \ |
221 | "16\n" \ | 221 | "16\n" \ |
222 | "$ dc 0 1 and\n" \ | 222 | "$ dc 0 1 and\n" \ |
223 | "0\n" \ | 223 | "0\n" \ |
@@ -570,11 +570,11 @@ | |||
570 | "while true ; do\n" \ | 570 | "while true ; do\n" \ |
571 | " case $1 in\n" \ | 571 | " case $1 in\n" \ |
572 | " -a|--a-long) echo \"Option a\" ; shift ;;\n" \ | 572 | " -a|--a-long) echo \"Option a\" ; shift ;;\n" \ |
573 | " -b|--b-long) echo \"Option b, argument \`$2'\" ; shift 2 ;;\n" \ | 573 | " -b|--b-long) echo \"Option b, argument `$2'\" ; shift 2 ;;\n" \ |
574 | " -c|--c-long)\n" \ | 574 | " -c|--c-long)\n" \ |
575 | " case "$2" in\n" \ | 575 | " case "$2" in\n" \ |
576 | " \"\") echo \"Option c, no argument\"; shift 2 ;;\n" \ | 576 | " \"\") echo \"Option c, no argument\"; shift 2 ;;\n" \ |
577 | " *) echo \"Option c, argument \`$2'\" ; shift 2 ;;\n" \ | 577 | " *) echo \"Option c, argument `$2'\" ; shift 2 ;;\n" \ |
578 | " esac ;;\n" \ | 578 | " esac ;;\n" \ |
579 | " --) shift ; break ;;\n" \ | 579 | " --) shift ; break ;;\n" \ |
580 | " *) echo \"Internal error!\" ; exit 1 ;;\n" \ | 580 | " *) echo \"Internal error!\" ; exit 1 ;;\n" \ |
@@ -1906,7 +1906,7 @@ | |||
1906 | "/dev/tty2\n" | 1906 | "/dev/tty2\n" |
1907 | 1907 | ||
1908 | #define udhcpc_trivial_usage \ | 1908 | #define udhcpc_trivial_usage \ |
1909 | "[-fqv] [-c CLIENTID] [-H HOSTNAME] [-i INTERFACE]\n\[-p file] [-r IP] [-s script]" | 1909 | "[-fqv] [-c CLIENTID] [-H HOSTNAME] [-i INTERFACE]\n[-p file] [-r IP] [-s script]" |
1910 | #define udhcpc_full_usage \ | 1910 | #define udhcpc_full_usage \ |
1911 | "\t-c,\t--clientid=CLIENTID\tClient identifier\n" \ | 1911 | "\t-c,\t--clientid=CLIENTID\tClient identifier\n" \ |
1912 | "\t-H,\t--hostname=HOSTNAME\tClient hostname\n" \ | 1912 | "\t-H,\t--hostname=HOSTNAME\tClient hostname\n" \ |