# HG changeset patch # User jwe # Date 1133886589 0 # Node ID a75de3db5c374aa6da8392679d09bcb5c87621c1 # Parent 2299097cf9f2aa5db6b3e49f566b0f7fe9f51f7d [project @ 2005-12-06 16:29:48 by jwe] diff --git a/scripts/ChangeLog b/scripts/ChangeLog --- a/scripts/ChangeLog +++ b/scripts/ChangeLog @@ -1,3 +1,7 @@ +2005-12-06 John W. Eaton + + * miscellaneous/dir.m: Return Nx1 instead of 1xN struct array. + 2005-12-05 John W. Eaton * plot/axis.m: Add "## PKG_ADD: mark_as_command axis" line. diff --git a/scripts/miscellaneous/dir.m b/scripts/miscellaneous/dir.m --- a/scripts/miscellaneous/dir.m +++ b/scripts/miscellaneous/dir.m @@ -120,7 +120,7 @@ off = 1; for i = 1:nf tlen = len(i); - file_list(off:off+tlen-1) = finfo{i}; + file_list(off:off+tlen-1,1) = finfo{i}; off += tlen; endfor endif