/ is legal in Prolog, why did I comment that out?

This commit is contained in:
Vitor Santos Costa 2009-05-09 23:49:10 -04:00
parent e5a3150da0
commit b177a9e333

View File

@ -181,7 +181,7 @@ legalAtom(unsigned char *s) /* Is this a legal atom ? */
return FALSE;
else
while (ch) {
if (Yap_chtype[ch] != SY || ch == '\\')
if (Yap_chtype[ch] != SY)
return FALSE;
ch = *++s;
}