Mercurial > hg > octave-nkf
diff scripts/pkg/private/configure_make.m @ 14513:3313635c622d
Remove calls to deleted function split_by.
* scripts/pkg/private/configure_make.m: Replace split_by
with strtrim (strsplit ())
* scripts/pkg/private/write_index.m: Replace split_by
with strtrim (strsplit ())
* scripts/pkg/private/unload_packages.m: Replace split_by
with strtrim (strsplit ())
author | Carlo de Falco <cdf@users.sourceforge.net> |
---|---|
date | Sat, 31 Mar 2012 16:20:09 +0200 |
parents | 05b59be209ed |
children | 5d3a684236b0 |
line wrap: on
line diff
--- a/scripts/pkg/private/configure_make.m +++ b/scripts/pkg/private/configure_make.m @@ -91,7 +91,7 @@ if (filenames(end) == "\n") filenames(end) = []; endif - filenames = split_by (filenames, "\n"); + filenames = strtrim (strsplit (filenames, "\n")); delete_idx = []; for i = 1:length (filenames) if (! all (isspace (filenames{i})))