Searched refs:VALID_WROW (Results 1 – 7 of 7) sorted by relevance
495 wp->w_valid &= ~(VALID_WROW|VALID_WCOL|VALID_VIRTCOL in check_cursor_moved()504 wp->w_valid &= ~(VALID_WROW|VALID_WCOL|VALID_VIRTCOL); in check_cursor_moved()576 wp->w_valid &= ~(VALID_WROW|VALID_WCOL|VALID_VIRTCOL in changed_cline_bef_curs_win()647 return ((curwin->w_valid & (VALID_WROW|VALID_WCOL)) == in cursor_valid()648 (VALID_WROW|VALID_WCOL)); in cursor_valid()659 if ((curwin->w_valid & (VALID_WCOL|VALID_WROW)) != (VALID_WCOL|VALID_WROW)) in validate_cursor()1998 curwin->w_valid &= ~(VALID_WROW|VALID_CROW); in scroll_cursor_bot()2356 ~(VALID_WROW|VALID_WCOL|VALID_CHEIGHT|VALID_CROW); in cursor_correct()2437 curwin->w_valid &= ~(VALID_WROW|VALID_CROW); in onepage()2745 curwin->w_valid &= ~(VALID_CROW|VALID_WROW); in halfpage()[all …]
1886 ~(VALID_WROW|VALID_CROW|VALID_BOTLINE|VALID_BOTLINE_AP); in jump_to_mouse()1927 ~(VALID_WROW|VALID_CROW|VALID_BOTLINE|VALID_BOTLINE_AP); in jump_to_mouse()
2694 if (old_wcol != new_wcol && (wp->w_valid & (VALID_WCOL|VALID_WROW)) in win_update()2695 != (VALID_WCOL|VALID_WROW)) in win_update()
627 #define VALID_WROW 0x01 // w_wrow (window row) is valid macro
2518 curwin->w_valid |= VALID_WCOL|VALID_WROW|VALID_VIRTCOL; in win_line()
2236 wp->w_valid |= (VALID_WCOL|VALID_WROW); in position_cursor()
1784 Solution: Check the VALID_CROW flag instead of VALID_WROW.