On Fri, Mar 14, 2014 at 7:15 PM, Karl Berry <[email protected]> wrote: > > > $ makeinfo -v -D 'var1 foo' -o test.info test.texi > > Thanks for the analysis and patch.
You're welcome. > > > + 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'.) Yes, this should be better. > > Thanks again, > Karl Cheers, GUO Yixuan
