On 29/02/2016 12:19, [email protected] wrote:
+if (`uname -o` =~ /cygwin/i) {
+ $ENV{'LANG'} = 'C.UTF-8';
+} else {
+ $ENV{'LANG'} = 'C';
This can just say "$ENV{'LANG'} = 'C';" right? As that has to work everywhere?
On 29/02/2016 12:19, [email protected] wrote:
+if (`uname -o` =~ /cygwin/i) {
+ $ENV{'LANG'} = 'C.UTF-8';
+} else {
+ $ENV{'LANG'} = 'C';
This can just say "$ENV{'LANG'} = 'C';" right? As that has to work everywhere?