Lines Matching refs:nextra
5477 int nextra; /* The number of characters being added to the */ in KT_KEY_FN() local
5538 nextra = suffix_len + cont_len; in KT_KEY_FN()
5542 if(!waserr && nextra) { in KT_KEY_FN()
5546 if(gl->ntotal + nextra < gl->linelen) { in KT_KEY_FN()
5550 gl_make_gap_in_buffer(gl, gl->buff_curpos, nextra); in KT_KEY_FN()
5563 gl->buff_curpos += nextra; in KT_KEY_FN()
5607 int nextra; /* The number of characters to be added */ in KT_KEY_FN() local
5667 nextra = length - pathlen; in KT_KEY_FN()
5671 if(gl->ntotal + nextra >= gl->linelen) { in KT_KEY_FN()
5679 if(nextra > 0) { in KT_KEY_FN()
5680 gl_make_gap_in_buffer(gl, gl->buff_curpos, nextra); in KT_KEY_FN()
5681 } else if(nextra < 0) { in KT_KEY_FN()
5682 gl->buff_curpos += nextra; in KT_KEY_FN()
5683 gl_remove_from_buffer(gl, gl->buff_curpos, -nextra); in KT_KEY_FN()