Diff for /loncom/xml/lonplot.pm between versions 1.160 and 1.161

version 1.160, 2012/07/16 10:09:36 version 1.161, 2012/07/17 09:54:48
Line 2004  sub write_gnuplot_file { Line 2004  sub write_gnuplot_file {
  $linestyle_index++; # Each curve get a unique linestyle.   $linestyle_index++; # Each curve get a unique linestyle.
     }      }
     # Write the output to a file.      # Write the output to a file.
     open (my $fh,">$tmpdir$filename.data");      open (my $fh, "> $tmpdir$filename.data");
       binmode($fh, ':utf8');
     print $fh $gnuplot_input;      print $fh $gnuplot_input;
     close($fh);      close($fh);
     # That's all folks.      # That's all folks.

Removed from v.1.160  
changed lines
  Added in v.1.161


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>