Lines Matching refs:line1
33 static void mark_adjust_internal(linenr_T line1, linenr_T line2, long amount,
973 if (*lp >= line1 && *lp <= line2) \
988 if (*lp >= line1 && *lp <= line2) \
991 *lp = line1; \
1012 linenr_T line1, in mark_adjust() argument
1017 mark_adjust_internal(line1, line2, amount, amount_after, TRUE); in mark_adjust()
1022 linenr_T line1, in mark_adjust_nofold() argument
1027 mark_adjust_internal(line1, line2, amount, amount_after, FALSE); in mark_adjust_nofold()
1032 linenr_T line1, in mark_adjust_internal() argument
1045 if (line2 < line1 && amount_after == 0L) // nothing to do in mark_adjust_internal()
1086 qf_mark_adjust(NULL, line1, line2, amount, amount_after); in mark_adjust_internal()
1089 qf_mark_adjust(win, line1, line2, amount, amount_after); in mark_adjust_internal()
1093 sign_mark_adjust(line1, line2, amount, amount_after); in mark_adjust_internal()
1140 if (win->w_topline >= line1 && win->w_topline <= line2) in mark_adjust_internal()
1144 if (line1 <= 1) in mark_adjust_internal()
1147 win->w_topline = line1 - 1; in mark_adjust_internal()
1162 if (win->w_cursor.lnum >= line1 && win->w_cursor.lnum <= line2) in mark_adjust_internal()
1166 if (line1 <= 1) in mark_adjust_internal()
1169 win->w_cursor.lnum = line1 - 1; in mark_adjust_internal()
1182 foldMarkAdjust(win, line1, line2, amount, amount_after); in mark_adjust_internal()
1189 diff_mark_adjust(line1, line2, amount, amount_after); in mark_adjust_internal()