# HG changeset patch # User John W. Eaton # Date 1204687740 18000 # Node ID df583cd2f21efae6d0c58190196e08b2b8f31553 # Parent 40574114c514ac020915e11f6bd6c11131e3ed64 print.m: fix oops in applying last change diff -r 40574114c514 -r df583cd2f21e scripts/ChangeLog --- a/scripts/ChangeLog Tue Mar 04 22:25:50 2008 -0500 +++ b/scripts/ChangeLog Tue Mar 04 22:29:00 2008 -0500 @@ -1,3 +1,7 @@ +2008-03-04 John W. Eaton + + * plot/print.m: Fix oops in applying last change. + 2008-03-04 Bill Denney * geometry/rectint.m: New function. diff -r 40574114c514 -r df583cd2f21e scripts/plot/print.m --- a/scripts/plot/print.m Tue Mar 04 22:25:50 2008 -0500 +++ b/scripts/plot/print.m Tue Mar 04 22:29:00 2008 -0500 @@ -190,6 +190,8 @@ endif elseif (ishandle (arg)) figure (arg); + elseif (length (arg) > 0) + name = arg; else error ("print: expecting inputs to be character string options or a figure handle"); endif