fix bug with very large integers

fix bug where indexing code was looking at code after a cut.


git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@1513 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
This commit is contained in:
vsc
2006-01-16 02:57:52 +00:00
parent f03fd0c1da
commit 3715f1b1d7
6 changed files with 33 additions and 242 deletions

View File

@@ -232,7 +232,7 @@ read_int_overflow(const char *s, Int base, Int val)
return t;
#else
/* try to scan it as a float */
return(MkIntegerTerm(val));
return MkIntegerTerm(val);
#endif
}