mercurial/exthelper.py
changeset 41082 4d40f6bb4cef
parent 41071 c81bb97b0cac
child 41279 c9e1104e6272
--- a/mercurial/exthelper.py	Sun Dec 30 21:52:26 2018 -0500
+++ b/mercurial/exthelper.py	Sun Dec 30 22:46:54 2018 -0500
@@ -96,9 +96,9 @@
         self._uipopulatecallables.extend(other._uipopulatecallables)
         self._extcallables.extend(other._extcallables)
         self._repocallables.extend(other._repocallables)
-        self.filesetpredicate._table.update(other.filesetpredicate._table)
-        self.revsetpredicate._table.update(other.revsetpredicate._table)
-        self.templatekeyword._table.update(other.templatekeyword._table)
+        self.filesetpredicate._merge(other.filesetpredicate)
+        self.revsetpredicate._merge(other.revsetpredicate)
+        self.templatekeyword._merge(other.templatekeyword)
         self._commandwrappers.extend(other._commandwrappers)
         self._extcommandwrappers.extend(other._extcommandwrappers)
         self._functionwrappers.extend(other._functionwrappers)