D6619: crecord: fix if -> elif when handling key presses

spectral (Kyle Lippincott) phabricator at mercurial-scm.org
Mon Jul 8 18:04:31 EDT 2019


Closed by commit rHG3be6ff55095b: crecord: fix if -> elif when handling key presses (authored by spectral).
This revision was automatically updated to reflect the committed changes.

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D6619?vs=15811&id=15820

CHANGES SINCE LAST ACTION
  https://phab.mercurial-scm.org/D6619/new/

REVISION DETAIL
  https://phab.mercurial-scm.org/D6619

AFFECTED FILES
  mercurial/crecord.py

CHANGE DETAILS

diff --git a/mercurial/crecord.py b/mercurial/crecord.py
--- a/mercurial/crecord.py
+++ b/mercurial/crecord.py
@@ -1724,7 +1724,7 @@
         keypressed = pycompat.bytestr(keypressed)
         if keypressed in ["k", "KEY_UP"]:
             self.uparrowevent()
-        if keypressed in ["K", "KEY_PPAGE"]:
+        elif keypressed in ["K", "KEY_PPAGE"]:
             self.uparrowshiftevent()
         elif keypressed in ["j", "KEY_DOWN"]:
             self.downarrowevent()



To: spectral, #hg-reviewers, pulkit
Cc: mercurial-devel


More information about the Mercurial-devel mailing list