<div dir="ltr"><div>Hi all,</div><div><br></div><div>In the current image there's a bug when declaring undeclared temporary variables inside a block. This one has two related consequences:</div><div>1. If the block has no temporaries, but it does have two $| in the temporary declaration part, then it declares the missing temporary in a new set of $|. You can reproduce this one by saving this method:</div><div><br></div><div>test<br>        [|| var _ 'var']</div><div><br></div><div>and selecting "declare block-local temp" in the popup that appears.</div><div><br></div><div>2. If the block has temporaries, but the last temporary declared doesn't have a space after it, it declares the new temporary right after that one, without a space in between. You can reproduce this one by saving this method:</div><div><br></div><div>test<br>            [ | var1| var2 _ 'var']</div><div><br></div><div>and again selecting "declare block-local temp" in the popup that appears.</div><div><br></div><div>Attached is a ChangeSet that solves both issues. Comments are very welcome.</div><div><br></div><div>Cheers,</div><div>Eric<br></div></div>