Commented out buggy patch for supporting quote atoms starting with /* as it breaks write_canonical/1.

This commit is contained in:
Paulo Moura 2010-11-23 00:12:41 +00:00
parent f9cd010242
commit 907d10128d
1 changed files with 2 additions and 2 deletions

View File

@ -303,8 +303,8 @@ legalAtom(unsigned char *s) /* Is this a legal atom ? */
return (*++s == ']' && !(*++s));
else if (ch == '{')
return (*++s == '}' && !(*++s));
else if (ch == '/')
return (*++s != '*');
// else if (ch == '/')
// return (*++s != '*');
else if (Yap_chtype[ch] == SL)
return (!*++s);
else if ((ch == ',' || ch == '.') && !s[1])