# HG changeset patch # User jwe # Date 854394573 0 # Node ID b8a3dd7e2e1ac003764eccbe0405cb90c9482fa9 # Parent 0774c3f023e8d3be2b94abca2da1e14de7bf3d46 [project @ 1997-01-27 19:49:33 by jwe] diff --git a/scripts/ChangeLog b/scripts/ChangeLog --- a/scripts/ChangeLog +++ b/scripts/ChangeLog @@ -1,3 +1,8 @@ +Mon Jan 27 13:48:31 1997 John W. Eaton + + * plot/__plt__.m: Use usleep() instead of replot to try to avoid + weird missing-lines bug without creating extra plots unecessarily. + Sat Jan 25 22:37:07 1997 John W. Eaton * Makefile.in, audio/Makefile.in, control/Makefile.in, diff --git a/scripts/plot/__plt__.m b/scripts/plot/__plt__.m --- a/scripts/plot/__plt__.m +++ b/scripts/plot/__plt__.m @@ -72,6 +72,13 @@ x_set = 1; endif + ## Something fishy is going on. I don't think this should be + ## necessary, but without it, sometimes not all the lines from a + ## given plot command appear on the screen. Even with it, the + ## delay might not be long enough for some systems... + + usleep (1e5); + endwhile ## Handle last plot. @@ -84,12 +91,6 @@ endif endif - ## Something fishy is going on. I don't think this should be - ## necessary, but without it, sometimes not all the lines from a - ## given plot command appear on the screen. - - replot; - unwind_protect_cleanup if (! hold_state)