|
From: sfeam (E. Merritt) <eam...@gm...> - 2012-01-09 05:36:10
|
On Sunday, 08 January 2012, Tatsuro MATSUOKA wrote:
> Hello
>
> borders.dem fails in the current cvs tip
>
> ********************** file borders.dem *********************
>
> border is not drawn
>
>
> ;
> set border bb;
> show border;
> set label 1 "Border = %.0f",bb at 5,5 center;
^^^^^^^^^^^^^^^^^^
Deprecated syntax.
I added that syntax to the set of deprecated constructions
covered by ./configure --with-backwards-compatibility
but I didn't realize any of the demos used it.
The demo should now be updated to
set label 1 sprintf("Border = %.0f",bb) at 5,5 center
Ethan
> plot 1/0 notitle;
>
> ^
> line 15: ';' expected
>
> This happens in both MinGW and Cygwin.
>
> Regards
>
> Tatsuro
|