Searched refs:LOOKAHEAD (Results 1 – 3 of 3) sorted by relevance
/titanic_41/usr/src/lib/libshell/common/edit/ |
H A D | completion.c | 498 genchar buff[LOOKAHEAD+1]; in ed_macro() 511 if( strlen(out) > LOOKAHEAD ) in ed_macro() 513 c = out[LOOKAHEAD]; in ed_macro() 514 out[LOOKAHEAD] = 0; in ed_macro() 518 out[LOOKAHEAD] = c; in ed_macro() 520 strncpy((char*)buff,out,LOOKAHEAD); in ed_macro() 521 buff[LOOKAHEAD] = 0; in ed_macro()
|
H A D | edit.c | 768 if(n > LOOKAHEAD) in ed_setup() 769 n = LOOKAHEAD; in ed_setup() 1022 char readin[LOOKAHEAD+1]; 1029 if((n=ed_read(ep,ep->e_fd,readin,-LOOKAHEAD,0)) > 0) 1065 if(n=keytrap(ep,readin,n,LOOKAHEAD-n,mode)) 1089 if (ep->e_lookahead < LOOKAHEAD)
|
/titanic_41/usr/src/lib/libshell/common/include/ |
H A D | edit.h | 48 #define LOOKAHEAD 80 macro 110 int e_lbuf[LOOKAHEAD];/* pointer to look-ahead buffer */
|