in reply to Re^3: how do you check if it's compiled away?
in thread removing debugging code at compile time ?
Environment vars are definately case sensitive on Debian, and there's no special treatment of %ENV by perl:
print "uc => ", $ENV{EDITOR} || '', "\n"; print "lc => ", $ENV{editor} || '', "\n"; __END__ UC => emacs lc =>
|
|---|