# HG changeset patch # User Jordi GutiƩrrez Hermoso # Date 1311924674 18000 # Node ID 00f5292aefeb8c6ee36077ab127990766d6ae2a1 # Parent 0ca8f06aba7a59b5e7bad4a92ff73e1222760b26 Backout 12897:503865c2e542 diff -r 0ca8f06aba7a -r 00f5292aefeb src/strfns.cc --- a/src/strfns.cc Thu Jul 28 12:00:43 2011 -0400 +++ b/src/strfns.cc Fri Jul 29 02:31:14 2011 -0500 @@ -170,7 +170,6 @@ @deftypefnx {Built-in Function} {} strvcat (@var{x}, @dots{})\n\ @deftypefnx {Built-in Function} {} strvcat (@var{s1}, @var{s2}, @dots{})\n\ @deftypefnx {Built-in Function} {} strvcat (@var{cell_array})\n\ -@deftypefnx {Built-in Function} {} strvcat ()\n\ Create a character array from one or more numeric matrices, character\n\ matrices, or cell arrays. Arguments are concatenated vertically.\n\ The returned values are padded with blanks as needed to make each row\n\ @@ -197,9 +196,6 @@ \"half \"]\n\ @end group\n\ @end example\n\ -\n\ -For compatibility with @sc{Matlab}, calling @code{strvcat} without arguments\n\ -returns the empty string.\n\ @seealso{char, strcat, cstrcat}\n\ @end deftypefn") { @@ -277,7 +273,7 @@ retval = octave_value (result, '\''); } else - retval = octave_value (""); + print_usage (); return retval; }