changeset 6180:133e7a4a5565

[project @ 2006-11-17 21:09:34 by jwe]
author jwe
date Fri, 17 Nov 2006 21:09:34 +0000
parents 235a1b456cf4
children ac4821cdb740
files doc/ChangeLog doc/interpreter/sparseimages.m src/DLD-FUNCTIONS/__gnuplot_raw__.l
diffstat 3 files changed, 6 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/doc/ChangeLog	Fri Nov 17 17:33:09 2006 +0000
+++ b/doc/ChangeLog	Fri Nov 17 21:09:34 2006 +0000
@@ -1,3 +1,7 @@
+2006-11-17  John W. Eaton  <jwe@octave.org>
+
+	* interpreter/sparseimages.m: Fix call to __plt3__.
+
 2006-11-16  John W. Eaton  <jwe@octave.org>
 
 	* interpreter/sparseimages.m (femimages): Use plot3.
--- a/doc/interpreter/sparseimages.m	Fri Nov 17 17:33:09 2006 +0000
+++ b/doc/interpreter/sparseimages.m	Fri Nov 17 21:09:34 2006 +0000
@@ -253,15 +253,12 @@
       __gnuplot_raw__ ("set surface;\n");
       __gnuplot_raw__ ("set nocontour;\n");
       __gnuplot_raw__ ("set nologscale;\n");
-      __gnuplot_set__ parametric;
       __gnuplot_raw__ ("set view 60, 30, 1, 1;\n");
       __gnuplot_raw__ ("set nokey;\n");
       __gnuplot_raw__ ("set nocolorbox;\n");
-      msg = strcat ("");
       __gnuplot_raw__ ("set title \"Sorry, graphics not available because octave was\\ncompiled without the sparse matrix implementation.\";\n");
-      __plt3__ (zz, "", "");
+      __plt3__ (zz, true, "", "", "", "");
     unwind_protect_cleanup
-      __gnuplot_set__ noparametric;
       print (strcat (nm, ".", typ), strcat ("-d", typ));
       bury_output ();
     end_unwind_protect
--- a/src/DLD-FUNCTIONS/__gnuplot_raw__.l	Fri Nov 17 17:33:09 2006 +0000
+++ b/src/DLD-FUNCTIONS/__gnuplot_raw__.l	Fri Nov 17 21:09:34 2006 +0000
@@ -1727,7 +1727,7 @@
 
 DEFUN_DLD (__gnuplot_send_inline_data__, args, ,
   "-*- texinfo -*-\n\
-@deftypefn {Loadable Function} {} __gnuplot_send_inline_data__ (@var{string})\n\
+@deftypefn {Loadable Function} {} __gnuplot_send_inline_data__ (@var{data}, @var{ndim}, @var{parametric})\n\
 Send @var{val} to gnuplot subprocess as inline data.\n\
 @end deftypefn")
 {