In article <199905061737.KAA11292@scv3.apple.com> you wrote:
> | Ops, you you repost?
Thanks.
> ##
> +## Platform-specific defaults
> +##
> +case $PLATFORM in
> + *-apple-rhapsody*) default_layout="Mac OS X Server";;
> + *-apple-macos*) default_layout="Mac OS X Server";;
> + *) default_layout="Apache";;
> +esac
Although your variant looks nice and orthogonal for itself I would write it
less redundant and make the Apache default layout more prominent:
default_layout="Apache"
case $PLATFORM in
*-apple-rhapsody*|*-apple-macos*)
default_layout="Mac OS X Server"
;;
esac
But I've no really strong objections to your proposed style. As already said,
although I dislike the whole "different default layouts" idea at all I'm not
vetoing it any longer now that we know all others like it, so +1: go for it.
Ralf S. Engelschall
rse@engelschall.com
www.engelschall.com
|