Mercurial > hg > xemacs-beta
diff src/lread.c @ 2013:f2fdfc131770
[xemacs-hg @ 2004-04-14 22:50:52 by james]
Work around GMP string to number limitations.
author | james |
---|---|
date | Wed, 14 Apr 2004 22:50:54 +0000 |
parents | a9cdbfb4716e |
children | 61855263cb07 |
line wrap: on
line diff
--- a/src/lread.c Wed Apr 14 21:50:42 2004 +0000 +++ b/src/lread.c Wed Apr 14 22:50:54 2004 +0000 @@ -1851,7 +1851,7 @@ #ifdef HAVE_RATIO if (isratio_string (read_ptr)) { - /* GMP ratio_set_string returns random values with initial + sign */ + /* GMP ratio_set_string has no effect with initial + sign */ if (*read_ptr == '+') read_ptr++; ratio_set_string (scratch_ratio, read_ptr, 0);