From: <prn...@us...> - 2012-03-18 16:05:23
|
Revision: 9948 http://octave.svn.sourceforge.net/octave/?rev=9948&view=rev Author: prnienhuis Date: 2012-03-18 16:05:16 +0000 (Sun, 18 Mar 2012) Log Message: ----------- Fixed texinfo header Modified Paths: -------------- trunk/octave-forge/main/io/src/cell2csv.cc trunk/octave-forge/main/io/src/csv2cell.cc Modified: trunk/octave-forge/main/io/src/cell2csv.cc =================================================================== --- trunk/octave-forge/main/io/src/cell2csv.cc 2012-03-18 15:35:02 UTC (rev 9947) +++ trunk/octave-forge/main/io/src/cell2csv.cc 2012-03-18 16:05:16 UTC (rev 9948) @@ -19,17 +19,17 @@ #include <octave/Cell.h> DEFUN_DLD (cell2csv, args, nargout, - "-*- texinfo -*-\n" - "@deftypefn {Loadable Function} {} cell2csv (@var{file}, @var{c})\n" - "@deftypefnx {Loadable Function} {} cell2csv (@var{file}, @var{c}, @var{sep})\n" - "@deftypefnx {Loadable Function} {} cell2csv (@var{file}, @var{c}, @var{sep}, @var{prot})\n" - "\n" - "Create a CSV file from a cell array. " - "@var{sep} (character value) changes the character used to separate two fields. " - "The default value is a comma " - "(@code{,}). @var{prot} (character value) changes the character used to protect a string. " - "Default value is a double quote (@code{\"}).\n" - "@end deftypefn") { + "-*- texinfo -*-\n" + "@deftypefn {Loadable Function} {} cell2csv (@var{file}, @var{c})\n" + "@deftypefnx {Loadable Function} {} cell2csv (@var{file}, @var{c}, @var{sep})\n" + "@deftypefnx {Loadable Function} {} cell2csv (@var{file}, @var{c}, @var{sep}, @var{prot})\n" + "\n" + "Create a CSV file from a cell array. " + "@var{sep} (character value) changes the character used to separate two fields. " + "The default value is a comma " + "(@code{,}). @var{prot} (character value) changes the character used to protect a string. " + "Default value is a double quote (@code{\"}).\n" + "@end deftypefn") { /* Check argument */ if ((args.length() < 2) || (args.length() > 4)) { Modified: trunk/octave-forge/main/io/src/csv2cell.cc =================================================================== --- trunk/octave-forge/main/io/src/csv2cell.cc 2012-03-18 15:35:02 UTC (rev 9947) +++ trunk/octave-forge/main/io/src/csv2cell.cc 2012-03-18 16:05:16 UTC (rev 9948) @@ -21,13 +21,12 @@ #define MAXSTRINGLENGTH 4096 DEFUN_DLD (csv2cell, args, nargout, - "-*- texinfo -*-\n" - "@deftypefn {Loadable Function} {@var{c} = } csv2cell (@var{file})\n" + "-*- texinfo -*-\n" + "@deftypefn {Loadable Function} {@var{c} = } csv2cell (@var{file})\n" "@deftypefnx {Loadable Function} {@var{c} = } csv2cell (@var{file}, @var{sep})\n" "@deftypefnx {Loadable Function} {@var{c} = } csv2cell (@var{file}, @var{sep}, @var{prot})\n" "\n" - "Read a CSV (Comma Separated Values) file and convert it into a " - "cell. " + "Read a CSV (Comma Separated Values) file and convert it into a cell array. " "@var{sep} (a character value) changes the character used to separate two fields. " "The default value is a comma " "(@code{,}). @var{prot} (character value) changes the character used to protect a string. " This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |