On Mon, Sep 09, 2002 at 11:02:39AM +0300, Martin Vermeer wrote:
>       * insetgraphics.C: disfuscated use of ']' in built output string.
> [...]
>       string const message = file_exists ?
> -             string() : string("bb = 0 0 200 100, draft, type=eps]");
> +             string() : string("bb = 0 0 200 100, draft, type=eps");

                string() : "bb = 0 0 200 100, draft, type=eps";

should do the trick as well...

> [...]
> -             before += ("[%\n" + opts + ']');
> +             before += ("[%\n" + opts + ',' + message + ']');

Why not

   before += "[%\n" + opts + ',' + message + ']';

Andre'


-- 
Those who desire to give up Freedom in order to gain Security,
will not have, nor do they deserve, either one. (T. Jefferson)

Reply via email to