# HG changeset patch # User jwe # Date 1156175829 0 # Node ID 4b433225128d9aa6a8f31d3ab5660be5d12bac02 # Parent 76cfea89e4e7e321891610ce8e68597fad44dd2b [project @ 2006-08-21 15:54:50 by jwe] diff -r 76cfea89e4e7 -r 4b433225128d scripts/ChangeLog --- a/scripts/ChangeLog Fri Aug 18 22:19:25 2006 +0000 +++ b/scripts/ChangeLog Mon Aug 21 15:57:09 2006 +0000 @@ -1,3 +1,7 @@ +2006-08-21 David Bateman + + * strings/mat2str.m: Compute NC before using. + 2006-08-17 John W. Eaton * audio/wavread.m: Fix calculation of sample count. diff -r 76cfea89e4e7 -r 4b433225128d scripts/strings/mat2str.m --- a/scripts/strings/mat2str.m Fri Aug 18 22:19:25 2006 +0000 +++ b/scripts/strings/mat2str.m Mon Aug 21 15:57:09 2006 +0000 @@ -109,6 +109,7 @@ s = ["[", s]; s(end) = "]"; ind = find (s == ","); + nc = columns (x); s(ind(nc:nc:end)) = ";"; endif diff -r 76cfea89e4e7 -r 4b433225128d src/ChangeLog --- a/src/ChangeLog Fri Aug 18 22:19:25 2006 +0000 +++ b/src/ChangeLog Mon Aug 21 15:57:09 2006 +0000 @@ -1,3 +1,8 @@ +2006-08-21 John W. Eaton + + * ov-fcn-handle.cc (DEFINE_OV_TYPEID_FUNCTIONS_AND_DATA): + For compatibility, set class to function_handle. + 2006-08-18 John W. Eaton * pr-output.cc (set_real_matrix_format): Also always include space diff -r 76cfea89e4e7 -r 4b433225128d src/ov-fcn-handle.cc --- a/src/ov-fcn-handle.cc Fri Aug 18 22:19:25 2006 +0000 +++ b/src/ov-fcn-handle.cc Mon Aug 21 15:57:09 2006 +0000 @@ -56,7 +56,7 @@ DEFINE_OV_TYPEID_FUNCTIONS_AND_DATA (octave_fcn_handle, "function handle", - "function handle"); + "function_handle"); void octave_fcn_handle::reload_warning (const std::string& fcn_type) const