*** command.c.orig Tue Jul 10 18:03:40 2001 --- command.c Sat Apr 13 21:43:24 2002 *************** *** 208,214 **** struct _HlpEntry __far *next; struct _HlpEntry __far *info; char __far *keyword; ! Long fpos; } HlpEntry; #define HelpPool 16 --- 208,214 ---- struct _HlpEntry __far *next; struct _HlpEntry __far *info; char __far *keyword; ! long fpos; } HlpEntry; #define HelpPool 16 *************** *** 293,299 **** if( error ) { WriteString(error); ! if (strlen(error)>0 && !(error[strlen(error)-1]=='\n')) { WriteString("\n"); } } --- 293,299 ---- if( error ) { WriteString(error); ! if (strlen(error)>(size_t)0 && !(error[strlen(error)-(size_t)1]=='\n')) { WriteString("\n"); } } *************** *** 719,725 **** { register char *ptr; register int ch,len,done; ! register Long pos; FILE *fp; fp = FileStack[FileDepth]; --- 719,725 ---- { register char *ptr; register int ch,len,done; ! register long pos; FILE *fp; fp = FileStack[FileDepth]; *************** *** 790,796 **** void LoadScriptFile( FILE *fp, char *name ) { register char *ptr; ! register int ch,len; register int stat; if( fp ) --- 790,797 ---- void LoadScriptFile( FILE *fp, char *name ) { register char *ptr; ! register int ch; ! register size_t len; register int stat; if( fp ) *************** *** 807,813 **** len = 0; ch = getc(fp); while( (ch!='\n') && (ch!='\r') && (ch!=EOF) ) ! { if( len