misc

Jarek Grebieszkow (frodo@ikf.uni-frankfurt.de)
Wed, 26 Feb 1997 04:14:54 +0100 (MET)


Hi,
short problem:
I have the following macro:

void plot(Char_t *fname)
{
printf("%s\n",fname);
}

and

root [0] .x plot.C("test");
test
NULL
root [1]

works but with different parameter:

root [1] .x plot.C("test.root");
Syntax error: G__getexpr: Parenthesis or quotation unmatch plot.C("test()
FILE: LINE:0
NULL
root [2]

where is the problem ?

Jarek