in Abort: don't check args for empty string

git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@107 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
This commit is contained in:
vsc 2001-06-27 15:36:38 +00:00
parent a781bf6557
commit fa40e9e92f

View File

@ -212,7 +212,7 @@ Abort (char *format,...)
va_start (ap, format);
PrologMode &= ~AbortMode;
if (format)
if (format || !strcmp(format,""))
{
char ch;
while ((ch = *format++)!=0)