diff scripts/help/__unimplemented__.m @ 17245:7babcdb9bc13

Use ... instead of \ for line continuation marker. * plotimages.m, bsxfun.cc, cellfun.cc, __unimplemented__.m, importdata.m, textscan.m, edit.m, fsolve.m, sqp.m, __gnuplot_drawnow__.m, __marching_cube__.m, stemleaf.m, polyfit.m, z_test.m, z_test_2.m, test.m: Use ... instead of \ for line continuation marker.
author Stefan Mahr <dac922@gmx.de>
date Mon, 12 Aug 2013 17:36:54 +0200
parents c3c1ebfaa7dc
children 1c89599167a6
line wrap: on
line diff
--- a/scripts/help/__unimplemented__.m	Wed Aug 14 02:07:07 2013 -0400
+++ b/scripts/help/__unimplemented__.m	Mon Aug 12 17:36:54 2013 +0200
@@ -41,25 +41,25 @@
   ## Some smarter cases, add more as needed.
   switch (fcn)
     case {"avifile", "aviinfo", "aviread"}
-      txt = ["Basic video file support is provided in the video package.  ", \
+      txt = ["Basic video file support is provided in the video package.  ", ...
              "See @url{http://octave.sf.net/video/}."];
 
     case "gsvd"
-      txt = ["gsvd is not currently part of core Octave.  ", \
-             "See the linear-algebra package at ", \
+      txt = ["gsvd is not currently part of core Octave.  ", ...
+             "See the linear-algebra package at ", ...
              "@url{http://octave.sourceforge.net/linear-algebra/}."];
 
     case "funm"
-      txt = ["funm is not currently part of core Octave.  ", \
-             "See the linear-algebra package at ", \
+      txt = ["funm is not currently part of core Octave.  ", ...
+             "See the linear-algebra package at ", ...
              "@url{http://octave.sourceforge.net/linear-algebra/}."];
 
     case "griddedInterpolant"
-      txt = ["griddedInterpolant is not implemented.  ", \
+      txt = ["griddedInterpolant is not implemented.  ", ...
              "Consider using griddata."];
 
     case "integral"
-      txt = ["Octave provides many routines for 1-D numerical integration.  ", \
+      txt = ["Octave provides many routines for 1-D numerical integration.  ", ...
              "Consider quadcc, quad, quadv, quadl, quadgk."];
 
     case "integral2"
@@ -69,32 +69,32 @@
       txt = ["integral3 is not implemented.  Consider using triplequad"];
 
     case "linprog"
-      txt = ["Octave does not currently provide linprog.  ", \
-             "Linear programming problems may be solved using @code{glpk}.  ",\
+      txt = ["Octave does not currently provide linprog.  ", ...
+             "Linear programming problems may be solved using @code{glpk}.  ", ...
              "Try @code{help glpk} for more info."];
 
     case "matlabrc"
-      txt = ["matlabrc is not implemented.  ", \
+      txt = ["matlabrc is not implemented.  ", ...
              'Octave uses the file ".octaverc" instead.'];
 
-    case {"ode113", "ode15i", "ode15s", "ode23", "ode23s", "ode23t", \
+    case {"ode113", "ode15i", "ode15s", "ode23", "ode23s", "ode23t", ...
           "ode23tb", "ode45", "odeget", "odeset"}
-      txt = ["Octave provides lsode for solving differential equations.  ", \
-             "For more information try @code{help lsode}.  ", \
-             "Matlab-compatible ODE functions are provided by the odepkg ", \
+      txt = ["Octave provides lsode for solving differential equations.  ", ...
+             "For more information try @code{help lsode}.  ", ...
+             "Matlab-compatible ODE functions are provided by the odepkg ", ...
              "package.  See @url{http://octave.sourceforge.net/odepkg/}."];
 
     case "startup"
-      txt = ["startup is not implemented.  ", \
+      txt = ["startup is not implemented.  ", ...
              'Octave uses the file ".octaverc" instead.'];
 
     case "quad2d"
       txt = ["quad2d is not implemented.  Consider using dblquad."];
 
     case {"xlsread", "xlsfinfo", "xlswrite", "wk1read", "wk1finfo", "wk1write"}
-      txt = ["Functions for spreadsheet style I/O ", \
-             "(.xls .xlsx .sxc .ods .dbf .wk1 etc.) " ,  \
-             "are provided in the io package. ", \
+      txt = ["Functions for spreadsheet style I/O ", ...
+             "(.xls .xlsx .sxc .ods .dbf .wk1 etc.) " , ...
+             "are provided in the io package. ", ...
              "See @url{http://octave.sf.net/io/}."];
 
     otherwise
@@ -107,8 +107,8 @@
   endswitch
 
   if (is_matlab_function)
-    txt = [txt, "\n\n@noindent\nPlease read ", \
-           "@url{http://www.octave.org/missing.html} to learn how ", \
+    txt = [txt, "\n\n@noindent\nPlease read ", ...
+           "@url{http://www.octave.org/missing.html} to learn how ", ...
            "you can contribute missing functionality."];
     txt = __makeinfo__ (txt);
   endif