changeset 6409:3483cce84528

[project @ 2007-03-14 20:50:10 by jwe]
author jwe
date Wed, 14 Mar 2007 20:50:10 +0000
parents af77d211ca65
children 8522b107e4ae
files scripts/plot/Makefile.in scripts/plot/clf.m
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/plot/Makefile.in	Wed Mar 14 20:31:17 2007 +0000
+++ b/scripts/plot/Makefile.in	Wed Mar 14 20:50:10 2007 +0000
@@ -30,6 +30,7 @@
   __go_draw_axes__.m \
   __go_draw_figure__.m \
   __gnuplot_version__.m \
+  __line__.m \
   __next_line_color__.m \
   __plr1__.m \
   __plr2__.m \
@@ -63,7 +64,6 @@
   hist.m \
   hold.m \
   isfigure.m \
-  ishandle.m \
   ishold.m \
   legend.m \
   line.m \
--- a/scripts/plot/clf.m	Wed Mar 14 20:31:17 2007 +0000
+++ b/scripts/plot/clf.m	Wed Mar 14 20:50:10 2007 +0000
@@ -27,7 +27,7 @@
 function clf ()
 
   if (nargin == 0)
-    for k = get (gcf (), children)
+    for k = get (gcf (), "children")
       delete (k);
     endfor
     drawnow ();