diff scripts/plot/oneplot.m @ 4422:92be67bc9301

[project @ 2003-06-04 17:43:15 by jwe]
author jwe
date Wed, 04 Jun 2003 17:43:15 +0000
parents a4cd1e9d9962
children eecc24b92d97
line wrap: on
line diff
--- a/scripts/plot/oneplot.m
+++ b/scripts/plot/oneplot.m
@@ -28,18 +28,14 @@
 
 function oneplot ()
 
-  if (gnuplot_has_multiplot)
-
-    global __multiplot_mode__ = 0;
+  global __multiplot_mode__ = 0;
 
-    if (__multiplot_mode__)
-      gset nomultiplot;
-      gset size 1, 1;
-      gset origin 0, 0;
-      __multiplot_mode__ = 0;
-      gnuplot_command_replot = "rep";
-    endif
-
+  if (__multiplot_mode__)
+    gset nomultiplot;
+    gset size 1, 1;
+    gset origin 0, 0;
+    __multiplot_mode__ = 0;
+    gnuplot_command_replot = "rep";
   endif
 
 endfunction