summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--array.c1
-rw-r--r--compar.c1
-rw-r--r--io.c2
4 files changed, 7 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index e64465862f..c4708b3c04 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -38,6 +38,11 @@ Mon Sep 12 19:26:29 2005 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
+Mon Sep 12 14:03:33 2005 Yukihiro Matsumoto <matz@ruby-lang.org>
+
+ * test/dbm/test_dbm.rb: remove locking test, which may not be
+ supported on some platforms. [ruby-dev:27030]
+
Sun Sep 11 23:23:02 2005 Shugo Maeda <shugo@ruby-lang.org>
* lib/net/imap.rb (starttls): supported the STARTTLS command.
@@ -49,7 +54,7 @@ Sun Sep 11 22:18:07 2005 Masatoshi SEKI <m_seki@mva.biglobe.ne.jp>
Sat Sep 10 22:34:19 2005 Yukihiro Matsumoto <matz@ruby-lang.org>
- * array.c: protoize.
+ * array.c, bignum.c: protoize.
Sat Sep 10 00:23:01 2005 Yukihiro Matsumoto <matz@ruby-lang.org>
diff --git a/array.c b/array.c
index 61c27b8f4a..da00c1a1c5 100644
--- a/array.c
+++ b/array.c
@@ -23,7 +23,6 @@ static ID id_cmp;
#define ARY_DEFAULT_SIZE 16
-
void
rb_mem_clear(register VALUE *mem, register long size)
{
diff --git a/compar.c b/compar.c
index fd06cf0c15..234a86027d 100644
--- a/compar.c
+++ b/compar.c
@@ -135,7 +135,6 @@ cmp_lt(VALUE x, VALUE y)
return Qfalse;
}
-
/*
* call-seq:
* obj <= other => true or false
diff --git a/io.c b/io.c
index 549c1e43d8..02010d8671 100644
--- a/io.c
+++ b/io.c
@@ -130,7 +130,7 @@ static VALUE lineno = INT2FIX(0);
#elif defined(__BEOS__)
# define STDIO_READ_DATA_PENDING(fp) (fp->_state._eof == 0)
#elif defined(__VMS)
-# define STDIO_READ_DATA_PENDING(fp) (((unsigned int)(*(fp))->_cnt) > 0)
+# define STDIO_READ_DATA_PENDING(fp) (((unsigned int)(*(fp))->_cnt) > 0)
#else
# define STDIO_READ_DATA_PENDING(fp) (!feof(fp))
#endif