Submitter | Simon Farnsworth |
---|---|
Date | March 14, 2016, 3:47 p.m. |
Message ID | <fd3e7cc9b7bde8bff64e.1457970436@simonfar-macbookpro.local> |
Download | mbox | patch |
Permalink | /patch/13878/ |
State | Accepted |
Commit | f7874de435c5845509860f16d245e07997101353 |
Headers | show |
Comments
Patch
diff --git a/mercurial/crecord.py b/mercurial/crecord.py --- a/mercurial/crecord.py +++ b/mercurial/crecord.py @@ -54,7 +54,7 @@ This method returns True if curses is found (and that python is built with it) and that the user has the correct flag for the ui. """ - return curses and ui.configbool('experimental', 'crecord', False) + return curses and ui.interface("chunkselector") == "curses" _origstdout = sys.__stdout__ # used by gethw() diff --git a/tests/test-commit-interactive-curses.t b/tests/test-commit-interactive-curses.t --- a/tests/test-commit-interactive-curses.t +++ b/tests/test-commit-interactive-curses.t @@ -4,8 +4,8 @@ $ cat <<EOF >> $HGRCPATH > [ui] > interactive = true + > interface = curses > [experimental] - > crecord = true > crecordtest = testModeCommands > EOF