Lines Matching refs:this_ru_col

418     int		this_ru_col;  in win_redr_status()  local
492 this_ru_col = ru_col - (Columns - wp->w_width); in win_redr_status()
493 if (this_ru_col < (wp->w_width + 1) / 2) in win_redr_status()
494 this_ru_col = (wp->w_width + 1) / 2; in win_redr_status()
495 if (this_ru_col <= 1) in win_redr_status()
509 for (i = 0; p[i] != NUL && clen >= this_ru_col - 1; in win_redr_status()
521 else if (len > this_ru_col - 1) in win_redr_status()
523 p += len - (this_ru_col - 1); in win_redr_status()
525 len = this_ru_col - 1; in win_redr_status()
530 this_ru_col + wp->w_wincol, fillchar, fillchar, attr); in win_redr_status()
533 && (int)(this_ru_col - len) > (int)(STRLEN(NameBuff) + 1)) in win_redr_status()
534 screen_puts(NameBuff, row, (int)(this_ru_col - STRLEN(NameBuff) in win_redr_status()
641 int this_ru_col; in win_redr_ruler() local
752 this_ru_col = ru_col - (Columns - width); in win_redr_ruler()
753 if (this_ru_col < 0) in win_redr_ruler()
754 this_ru_col = 0; in win_redr_ruler()
757 if (this_ru_col < (width + 1) / 2) in win_redr_ruler()
758 this_ru_col = (width + 1) / 2; in win_redr_ruler()
759 if (this_ru_col + o < width) in win_redr_ruler()
762 while (this_ru_col + o < width && RULER_BUF_LEN > i + 4) in win_redr_ruler()
779 if (this_ru_col + o > width) in win_redr_ruler()
786 else if (this_ru_col + (int)STRLEN(buffer) > width) in win_redr_ruler()
787 buffer[width - this_ru_col] = NUL; in win_redr_ruler()
789 screen_puts(buffer, row, this_ru_col + off, attr); in win_redr_ruler()
792 this_ru_col + off + (int)STRLEN(buffer), in win_redr_ruler()