Lines Matching defs:nchars
1043 /*{ DELETE( nchars, mode )
1045 * Delete nchars from the virtual space and leave cur_virt positioned
1054 static void cdelete(Vi_t *vp,register int nchars, int mode)
1064 if( nchars > 0 )
1068 if( (cur_virt-- + nchars) > last_virt )
1070 /*** set nchars to number actually deleted ***/
1071 nchars = last_virt - cur_virt;
1078 i = cp[nchars];
1079 cp[nchars] = 0;
1081 cp[nchars] = i;
1088 gencpy(cp,cp+nchars);
1089 last_virt -= nchars;
1763 /*{ PUTSTRING( column, nchars )
1765 * Put nchars starting at column of physical into the workspace
1770 static void putstring(register Vi_t *vp,register int col, register int nchars)
1772 while( nchars-- )