> $ makeinfo -v -D 'var1 foo' -o test.info test.texi Thanks for the analysis and patch.
> + my @field = split /\s+/, $var;
I installed the patch with one tiny change, making the above line:
my @field = split (/\s+/, $var, 2);
just in case the value contains whitespace.
(As in, -D'myvar weird\ val'.)
Thanks again,
Karl
