lib-dict: Further remove APPEND
Array API changed: ARRAY_DEFINE(name, type) -> ARRAY(type) name Easy way to update your existing code: perl -i -pe 's:ARRAY_DEFINE\(([^,]+), *([^)]+)\);:ARRAY($2) $1;:' **/*.[ch]
lib-dict: Moved "in-memory transaction" code from dict-file to more generic API.