commands: drop support for legacy ^cmd registration (API)
authorMatt Harbison <matt_harbison@yahoo.com>
Sat, 18 May 2019 19:38:47 -0400
changeset 42336 fa4b13e81f60
parent 42335 38b7b45627a2
child 42337 832c59d1196e
commands: drop support for legacy ^cmd registration (API)
mercurial/commands.py
--- a/mercurial/commands.py	Sat May 18 19:33:48 2019 -0400
+++ b/mercurial/commands.py	Sat May 18 19:38:47 2019 -0400
@@ -6248,16 +6248,6 @@
 def loadcmdtable(ui, name, cmdtable):
     """Load command functions from specified cmdtable
     """
-    cmdtable = cmdtable.copy()
-    for cmd in list(cmdtable):
-        if not cmd.startswith('^'):
-            continue
-        ui.deprecwarn("old-style command registration '%s' in extension '%s'"
-                      % (cmd, name), '4.8')
-        entry = cmdtable.pop(cmd)
-        entry[0].helpbasic = True
-        cmdtable[cmd[1:]] = entry
-
     overrides = [cmd for cmd in cmdtable if cmd in table]
     if overrides:
         ui.warn(_("extension '%s' overrides commands: %s\n")