[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: makeinfo -D doesn't work the same way as before
From: |
Karl Berry |
Subject: |
Re: makeinfo -D doesn't work the same way as before |
Date: |
Fri, 14 Mar 2014 23:15:39 GMT |
> $ 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