|
From: Petr M. <mi...@ph...> - 2009-02-06 12:14:00
|
There is a strange error happening with a not-yet-used variable:
gnuplot> load 'bug.gp'
"bug.gp", line 4: warning: b is not a string variable
where bug.gp:
set macros
a=''
if (1) a="plot x"; @a
if (1) b="plot x*x"; @b
---
PM
|