Jean-Marc Lasgouttes wrote: >>>>>> "Georg" == Georg Baum >>>>>> <[EMAIL PROTECTED]> >>>>>> writes: > Georg> There was a thinko in the patch. Can you please try this one? > Georg> It works for me, but I do not understand why it worked without > Georg> the patch, since the culprit was a break instead of a return > Georg> statement. > > Why do we use return instead of break in this method? This is very > atypical.
Therefore I used break before ;-) If you look at MathHullInset::getStatus you will see that we return always, and we have a return MathGridInset::getStatus(cur, cmd, status); as the last statement, so the return is needed in this case, too. Georg