##// END OF EJS Templates
crecord: switch a curses argument to bool to appease type checkers
Matt Harbison -
r51170:29d7a5a8 default
parent child Browse files
Show More
@@ -1990,7 +1990,7 b' are you sure you want to review/edit and'
1990 )
1990 )
1991 # newwin([height, width,] begin_y, begin_x)
1991 # newwin([height, width,] begin_y, begin_x)
1992 self.statuswin = curses.newwin(self.numstatuslines, 0, 0, 0)
1992 self.statuswin = curses.newwin(self.numstatuslines, 0, 0, 0)
1993 self.statuswin.keypad(1) # interpret arrow-key, etc. esc sequences
1993 self.statuswin.keypad(True) # interpret arrow-key, etc. esc sequences
1994
1994
1995 # figure out how much space to allocate for the chunk-pad which is
1995 # figure out how much space to allocate for the chunk-pad which is
1996 # used for displaying the patch
1996 # used for displaying the patch
General Comments 0
You need to be logged in to leave comments. Login now