*** /var/tmp/,RCSt1a13843 Sat Apr 13 21:16:57 2002 --- command.c Sat Apr 13 15:31:06 2002 *************** *** 163,169 struct _HlpEntry __far *next; struct _HlpEntry __far *info; char __far *keyword; ! Long fpos; } HlpEntry; #define HelpPool 16 --- 163,169 ----- struct _HlpEntry __far *next; struct _HlpEntry __far *info; char __far *keyword; ! long fpos; } HlpEntry; #define HelpPool 16 *************** *** 244,250 if( error ) { WriteString(error); ! if (strlen(error)>0 && !(error[strlen(error)-1]=='\n')) { WriteString("\n"); } } --- 244,250 ----- if( error ) { WriteString(error); ! if (strlen(error)>(size_t)0 && !(error[strlen(error)-(size_t)1]=='\n')) { WriteString("\n"); } } *************** *** 638,644 { register char *ptr; register int ch,len,done; ! register Long pos; FILE *fp; fp = FileStack[FileDepth]; --- 638,644 ----- { register char *ptr; register int ch,len,done; ! register long pos; FILE *fp; fp = FileStack[FileDepth]; *************** *** 687,693 void LoadScriptFile( FILE *fp, char *name ) { register char *ptr; ! register int ch,len; register int stat; if( fp ) --- 687,694 ----- void LoadScriptFile( FILE *fp, char *name ) { register char *ptr; ! register int ch; ! register size_t len; register int stat; if( fp ) *************** *** 704,710 len = 0; ch = getc(fp); while( (ch!='\n') && (ch!='\r') && (ch!=EOF) ) ! { if( len