summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-01-16 02:20:25 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-01-16 02:20:25 +0000
commit4e787e1242e1a63b55c030e9e0164e00130fd1c6 (patch)
treed487751d1461586d18ae2078f6b712ddf79d7228
parenteaf9eddac65ca2a80039b8d0794cb9b8270c1950 (diff)
downloadruby-4e787e1242e1a63b55c030e9e0164e00130fd1c6.tar.gz
ruby-4e787e1242e1a63b55c030e9e0164e00130fd1c6.tar.xz
ruby-4e787e1242e1a63b55c030e9e0164e00130fd1c6.zip
* object.c (rb_Float): remove underscores between digits.
* bignum.c (rb_cstr2inum): reject prefix followed by spaces only. * class.c (rb_class_inherited): should use Object when no super class. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1993 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog9
-rw-r--r--bignum.c2
-rw-r--r--class.c1
-rw-r--r--object.c17
4 files changed, 23 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index e54040885..633cd9dfe 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+Wed Jan 16 11:12:30 2002 Nobuyoshi Nakada <nobu.nakada@nifty.ne.jp>
+
+ * object.c (rb_Float): remove underscores between digits.
+
+ * bignum.c (rb_cstr2inum): reject prefix followed by spaces only.
+
+ * class.c (rb_class_inherited): should use Object when no super
+ class.
+
Fri Jan 11 05:06:25 2002 Nobuyoshi Nakada <nobu.nakada@nifty.ne.jp>
* class.c (rb_make_metaclass): [new]
diff --git a/bignum.c b/bignum.c
index e80b5b5ab..f4add5f5f 100644
--- a/bignum.c
+++ b/bignum.c
@@ -252,8 +252,8 @@ rb_cstr2inum(str, base)
if (*end == '_') goto bigparse;
if (badcheck) {
- while (*end && ISSPACE(*end)) end++;
if (end == str) goto bad; /* no number */
+ while (*end && ISSPACE(*end)) end++;
if (*end) { /* trailing garbage */
bad:
rb_invalid_str(s, "Integer");
diff --git a/class.c b/class.c
index fac09657f..f57f53b11 100644
--- a/class.c
+++ b/class.c
@@ -170,6 +170,7 @@ VALUE
rb_class_inherited(super, klass)
VALUE super, klass;
{
+ if (!super) super = rb_cObject;
return rb_funcall(super, rb_intern("inherited"), 1, klass);
}
diff --git a/object.c b/object.c
index fc2bd23fe..68a0b824e 100644
--- a/object.c
+++ b/object.c
@@ -966,7 +966,6 @@ rb_Float(val)
q = p = StringValuePtr(val);
while (*p && ISSPACE(*p)) p++;
- again:
d = strtod(p, &end);
if (p == end) {
bad:
@@ -975,12 +974,19 @@ rb_Float(val)
if (*end) {
if (*end == '_') {
char *buf = ALLOCA_N(char, strlen(p));
- char *n = buf, *last;
+ char *n = buf, *last = p;
+ while (p < end) *n++ = *p++;
while (*p) {
- if (*p == '_') {
+ if (*p == '_' && (n > buf && ISDIGIT(n[-1]))) {
+ /* remove underscores between digits */
last = ++p;
- continue;
+ while (*p == '_') ++p;
+ if (!ISDIGIT(*p)) {
+ while (last < p) *n++ = *last++;
+ continue;
+ }
+ last = p;
}
*n++ = *p++;
}
@@ -989,7 +995,8 @@ rb_Float(val)
if (!*last) goto bad;
*n = '\0';
p = buf;
- goto again;
+ d = strtod(p, &end);
+ if (p == end) goto bad;
}
while (*end && ISSPACE(*end)) end++;
if (*end) goto bad;