Lines Matching refs:first
501 linenr_T first, last; in f_deletebufline() local
524 first = tv_get_lnum_buf(&argvars[1], buf); in f_deletebufline()
528 last = first; in f_deletebufline()
530 if (buf->b_ml.ml_mfp == NULL || first < 1 in f_deletebufline()
531 || first > buf->b_ml.ml_line_count || last < first) in f_deletebufline()
546 count = last - first + 1; in f_deletebufline()
556 if (u_save(first - 1, last + 1) == FAIL) in f_deletebufline()
562 for (lnum = first; lnum <= last; ++lnum) in f_deletebufline()
563 ml_delete_flags(first, ML_DEL_MESSAGE); in f_deletebufline()
570 else if (wp->w_cursor.lnum> first) in f_deletebufline()
571 wp->w_cursor.lnum = first; in f_deletebufline()
576 deleted_lines_mark(first, count); in f_deletebufline()