Lines Matching defs:out

57  *		- ^X^H command to find out about history position (debugging)
92 # define isword(c) _isword(out[c])
99 # define isword(c) (isalnum(out[c]) || (out[c]=='_'))
183 register genchar *out;
209 out = (genchar*)buff;
211 out = (genchar*)roundof(buff-(char*)0,sizeof(genchar));
213 ed_internal(buff,out);
220 drawbuff = out;
251 out[reedit] = 0;
288 out[cur++] = c;
289 out[eol] = '\0';
367 out[i] = out[i-1];
369 out[cur++] = c;
382 out[c+i] = out[i];
385 out[cur++] = i;
387 eol = genlen(out);
413 genncpy(kstack,out+i,cur-i);
420 genncpy(kstack,out+i,cur-i);
423 gencpy(out+i,out+cur);
456 *kptr++ = out[i];
460 if ((out[i] = out[(i+1)])==0)
476 c = out[i];
484 out[i] = c;
498 if (out[i])
502 if (out[i] == c && --count==0)
509 if (out[i] == c && --count==0)
529 c = out[i - 1];
530 out[i-1] = out[i-2];
531 out[i-2] = c;
568 gencpy(&kstack[genlen(kstack)], &out[i]);
570 gencpy(kstack,&out[i]);
573 gencpy(kstack,&out[i]);
575 out[i] = 0;
608 adjust = escape(ep,out,oadjust);
611 search(ep,out,count);
666 hist_copy((char*)out,MAXLINE, hline,hloff);
668 ed_internal((char*)(out),out);
671 eol = genlen(out);
685 *out = '\0';
696 out[eol++] = '\n';
697 out[eol] = '\0';
701 ed_external(out,buff);
711 register genchar *out = drawbuff;
716 genncpy(string,out,sizeof(string)/sizeof(*string));
717 *out = 0;
720 ed_internal(str,out);
722 gencpy(out,str);
730 genncpy(out,string,sizeof(string)/sizeof(*string));
742 static int escape(register Emacs_t* ep,register genchar *out,int count)
796 while ((out[i])&&(!isword(i)))
798 while ((out[i])&&(isword(i)))
806 i = out[cur];
814 out[cur] = i;
903 ed_ungetchar(ep->ed,(out[0]=='#')?cntl('D'):'#');
924 gencpy(name,&out[cur]);
927 out[cur++] = *ptr++;
930 gencpy(&out[cur],name);
942 if(ed_expand(ep->ed,(char*)out,&cur,&eol,i,count) < 0)
967 if(i=='\\' && cur>ep->mark && (out[cur-1]=='/' || out[cur-1]==' '))
987 if (out[i] == c && --value==0)
994 if (out[i] == c && --value==0)
1019 out[cur] = 0;
1020 gencpy(&((genchar*)lstring)[1],out);
1173 static void search(Emacs_t* ep,genchar *out,int direction)
1254 hist_copy((char*)out,MAXLINE, hline,hloff);
1256 ed_internal((char*)out,out);
1326 ep->scvalid = 0; /* Screen is out of date, APPEND will not work */