Skip to content

BUG: dictionary entries not being properly merged/overwritten

Problem traced to substituteScopedKeyword. Example,

key1 val1;
update
{
    key1 val1b;
    key2 val2;
}
#inputMode overwrite  // or merge
$update

The value for key1 is not changed.