Style/comments.

This commit is contained in:
Devin Teske 2013-06-15 13:38:21 +00:00
parent 2f87dfb0db
commit 65c7c08716
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=251793

View File

@ -290,8 +290,9 @@ if [ "$1" ]; then
#
# ...unless it's a long-option for usage.
#
case "$1" in
-help|--help|-\?) usage;;
case "$1" in -help|--help|-\?)
usage
# Not reached
esac
#
@ -304,10 +305,12 @@ if [ "$1" ]; then
# no matches, display usage (which shows valid keywords)
f_err "%s: %s: $msg_not_found\n" "$pgm" "$1"
usage
# Not reached
fi
shift
exec $cmd ${USE_XDIALOG:+-X} "$@" || exit 1
# Not reached
fi
#