home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 2 BBS / 02-BBS.zip / bbbsr2.zip / scripts / editor.bz < prev    next >
Text File  |  1997-06-26  |  564b  |  14 lines

  1. int main(char file, int confnro, int replyto) {
  2.   // file is the filename to be edited
  3.   // confnro is the number of conference where this message will be saved
  4.   // replyto is the number of message to which this is a reply
  5.  
  6.   // next while is for dos/nt/os2 only!
  7.   while (pos("/",file)) file=sprintf("%s\\%s",copy(file,1,pos("/",file)-1),copy(file,pos("/",file)+1,120));
  8.  
  9.   if (bv_com) return(1);        // remote caller editor...
  10.   else
  11.     system(sprintf("emacs %s",file),0);         // local user editor
  12.   return(0); // 0=ask, 1=cancel, 2=save
  13. }
  14.