# HG changeset patch # User Mike Miller # Date 1412336120 14400 # Node ID 4871d0ecbfa74c5b9a6bddbb8c631e5133c4b96f # Parent 566ea8a8683b9a8d80f1cbd86b98663896c2d2f7 ls.m: Restore missing space between command and arguments * ls.m: Restore missing space between command and arguments dropped in cset 931cc13a6f3b. diff -r 566ea8a8683b -r 4871d0ecbfa7 scripts/miscellaneous/ls.m --- a/scripts/miscellaneous/ls.m Wed Oct 01 22:47:53 2014 -0400 +++ b/scripts/miscellaneous/ls.m Fri Oct 03 07:35:20 2014 -0400 @@ -82,7 +82,7 @@ args = ""; endif - cmd = [__ls_command__ args]; + cmd = [__ls_command__ " " args]; if (page_screen_output () || nargout > 0) [status, output] = system (cmd);