diff options
author | dd <dd@FreeBSD.org> | 2001-07-15 08:06:20 +0000 |
---|---|---|
committer | dd <dd@FreeBSD.org> | 2001-07-15 08:06:20 +0000 |
commit | 911ca14c8798a89d240d36ecbc63b5df5dd99f66 (patch) | |
tree | 62f210bf3aee25e49335dc77030fff6e97fbe447 /usr.bin/getopt | |
parent | a145482cf625d5f04072fd1d20b5c2062cbe8e47 (diff) | |
download | FreeBSD-src-911ca14c8798a89d240d36ecbc63b5df5dd99f66.zip FreeBSD-src-911ca14c8798a89d240d36ecbc63b5df5dd99f66.tar.gz |
Remove whitespace at EOL.
Diffstat (limited to 'usr.bin/getopt')
-rw-r--r-- | usr.bin/getopt/getopt.1 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/getopt/getopt.1 b/usr.bin/getopt/getopt.1 index d555b06..11a70b5 100644 --- a/usr.bin/getopt/getopt.1 +++ b/usr.bin/getopt/getopt.1 @@ -55,14 +55,14 @@ then fi set \-\- $args # You cannot use the set command with a backquoted getopt directly, -# since the exit code from getopt would be shadowed by those of set, +# since the exit code from getopt would be shadowed by those of set, # which is zero by definition. for i do case "$i" in \-a|\-b) - echo flag $i set; sflags="${i#-}$sflags"; + echo flag $i set; sflags="${i#-}$sflags"; shift;; \-o) echo oarg is "'"$2"'"; oarg="$2"; shift; @@ -107,7 +107,7 @@ has. .Pp Arguments containing white space or embedded shell metacharacters generally will not survive intact; this looks easy to fix but -isn't. People trying to fix +isn't. People trying to fix .Nm or the example in this manpage should check the history of this file in |