[PATCH 2 of 3] cmdutil: make commitforceeditor() to pass revision extras to ui.edit()

Alexander Drozdov al.drozdov at gmail.com
Thu Feb 6 03:54:41 CST 2014


# HG changeset patch
# User Alexander Drozdov <al.drozdov at gmail.com>
# Date 1391667320 -14400
#      Thu Feb 06 10:15:20 2014 +0400
# Node ID 504f89e587a9861e7da2e757557c6129946a13d1
# Parent  0946be793f356c54ef3a8f4f0de2819d8625c51a
cmdutil: make commitforceeditor() to pass revision extras to ui.edit()

diff --git a/mercurial/cmdutil.py b/mercurial/cmdutil.py
--- a/mercurial/cmdutil.py
+++ b/mercurial/cmdutil.py
@@ -1872,7 +1872,7 @@
      # run editor in the repository root
      olddir = os.getcwd()
      os.chdir(repo.root)
-    text = repo.ui.edit("\n".join(edittext), ctx.user())
+    text = repo.ui.edit("\n".join(edittext), ctx.user(), ctx.extra())
      text = re.sub("(?m)^HG:.*(\n|$)", "", text)
      os.chdir(olddir)




More information about the Mercurial-devel mailing list