Craig A. Berry [Mon, 11 Feb 2002 17:13:47 +0000 (11:13 -0600)]
Message-Id: <5.1.0.14.2.
20020211170332.01b94e88@exchi01>
p4raw-id: //depot/perl@14651
foreach (@$args) {
# In VMS protect with doublequotes because otherwise
# DCL will lowercase -- unless already doublequoted.
- $_ = q(").$_.q(") if $is_vms && !/^\"/;
+ $_ = q(").$_.q(") if $is_vms && !/^\"/ && length($_) > 0;
$$runperl .= ' ' . $_;
}
}