Lines Matching refs:nchars
1093 /*{ DELETE( nchars, mode )
1095 * Delete nchars from the virtual space and leave cur_virt positioned
1104 static void cdelete(Vi_t *vp,register int nchars, int mode)
1114 if( nchars > 0 )
1118 if( (cur_virt-- + nchars) > last_virt )
1120 /*** set nchars to number actually deleted ***/
1121 nchars = last_virt - cur_virt;
1128 i = cp[nchars];
1129 cp[nchars] = 0;
1131 cp[nchars] = i;
1138 gencpy(cp,cp+nchars);
1139 last_virt -= nchars;
1823 /*{ PUTSTRING( column, nchars )
1825 * Put nchars starting at column of physical into the workspace
1830 static void putstring(register Vi_t *vp,register int col, register int nchars)
1832 while( nchars-- )