# HG changeset patch # User jwe # Date 1111028307 0 # Node ID 42f9a021aac191f3abdef0a62910a7031042aac7 # Parent 96661dd7929122ade55081cf75bb248ea2ac0e28 [project @ 2005-03-17 02:58:27 by jwe] diff -r 96661dd79291 -r 42f9a021aac1 src/ChangeLog --- a/src/ChangeLog Wed Mar 16 20:44:39 2005 +0000 +++ b/src/ChangeLog Thu Mar 17 02:58:27 2005 +0000 @@ -1,5 +1,10 @@ 2005-03-16 John W. Eaton + * ov-struct.cc (octave_struct::save_ascii): Don't convert Cell + object to cs-list. + (octave_struct::save_binary): Likewise + (octave_struct::save_hdf5): Likewise. + * DLD-FUNCTIONS/gplot.l (Fset, Fshow): Delete. (F__gnuplot_plot__): Rename from Fgplot. (F__gnuplot_splot__): Rename from Fgsplot. diff -r 96661dd79291 -r 42f9a021aac1 src/ov-struct.cc --- a/src/ov-struct.cc Wed Mar 16 20:44:39 2005 +0000 +++ b/src/ov-struct.cc Thu Mar 17 02:58:27 2005 +0000 @@ -986,8 +986,7 @@ while (i != m.end ()) { Cell val = map.contents (i); - octave_value tmp = (map.numel () == 1) ? val(0) : - octave_value (val, true); + octave_value tmp = (map.numel () == 1) ? val(0) : octave_value (val); bool b = save_ascii_data (os, tmp, m.key (i), infnan_warned, strip_nan_and_inf, 0, 0); @@ -1061,8 +1060,7 @@ while (i != m.end ()) { Cell val = map.contents (i); - octave_value tmp = (map.numel () == 1) ? val(0) : - octave_value (val, true); + octave_value tmp = (map.numel () == 1) ? val(0) : octave_value (val); bool b = save_binary_data (os, tmp, m.key (i), "", 0, save_as_floats); @@ -1138,8 +1136,7 @@ while (i != m.end ()) { Cell val = map.contents (i); - octave_value tmp = (map.numel () == 1) ? val(0) : - octave_value (val, true); + octave_value tmp = (map.numel () == 1) ? val(0) : octave_value (val); bool retval2 = add_hdf5_data (data_hid, tmp, m.key (i), "", false, save_as_floats);