# HG changeset patch # User Ben Abbott # Date 1241131542 14400 # Node ID ec159e991ee6739cc78c4c1613a3d7e09c26896c # Parent 406ed43c0233eb7c4e520788d9a713ced3ed3eaa __gnuplot_has_feature__.m: Change version for "x11_figure_position", >4.2.4 to >=4.3.0. diff -r 406ed43c0233 -r ec159e991ee6 scripts/ChangeLog --- a/scripts/ChangeLog Thu Apr 30 18:19:34 2009 -0400 +++ b/scripts/ChangeLog Thu Apr 30 18:45:42 2009 -0400 @@ -1,3 +1,8 @@ +2009-04-30 Ben Abbott + + * plot/__gnuplot_has_feature__.m: Change version for + "x11_figure_position", >4.2.4 to >=4.3.0. + 2009-04-30 Ben Abbott * plot/gnuplot_drawnow.m: For figure position, treat 'wxt' as 'x11'. diff -r 406ed43c0233 -r ec159e991ee6 scripts/plot/__gnuplot_has_feature__.m --- a/scripts/plot/__gnuplot_has_feature__.m Thu Apr 30 18:19:34 2009 -0400 +++ b/scripts/plot/__gnuplot_has_feature__.m Thu Apr 30 18:45:42 2009 -0400 @@ -34,8 +34,8 @@ if (isempty (has_features)) gnuplot_version = __gnuplot_version__ (); - versions = {"4.2.4", "4.3", "4.3", "4.2", "4.2", "4.3", "4.3"}; - operators = {">", ">=", ">=", ">=", ">=", ">=", ">="}; + versions = {"4.3", "4.3", "4.3", "4.2", "4.2", "4.3", "4.3"}; + operators = {">=", ">=", ">=", ">=", ">=", ">=", ">="}; have_features = logical (zeros (size (features))); for n = 1 : numel (have_features) has_features(n) = compare_versions (gnuplot_version, versions{n}, operators{n});