On Fri, Apr 03, 2020 at 09:38:58PM +1100, Igor Cicimov wrote: > >> And in general how are duplicate statements being handled in the code, > >> .i.e. the first one or the last one is considered as valid, and are there > >> maybe any special statements that are exempt from the rule (like hopefully > >> balance :-) )
And just to clarify this point, with balance like most exclusive directives, the last one overrides the previous ones. There's a reason for this that's easy to remember: the values are first pre-initialized from the defaults section's values, so each keyword needs to be able to override any previous occurrence. Willy