summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoreban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-11-04 14:40:30 +0000
committereban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-11-04 14:40:30 +0000
commitda191c4547d002b488deaf639e28ef766f594024 (patch)
treea9f5d6816062337b138b455bdde17985ec5f0a11
parent3d00f9fc96c36206b4617db5a8b433720bada116 (diff)
* class.c, hash.c, string.c: remove #include "version.h".
* Makefile.in: remove needless version.h dependency. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4895 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog6
-rw-r--r--class.c1
-rw-r--r--hash.c1
-rw-r--r--string.c1
4 files changed, 6 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 7a6491ee1f..e25cec7189 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Tue Nov 4 23:38:43 2003 WATANABE Hirofumi <eban@ruby-lang.org>
+
+ * class.c, hash.c, string.c: remove #include "version.h".
+
+ * Makefile.in: remove needless version.h dependency.
+
Tue Nov 4 06:54:52 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
* io.c (read_all): fptr->f may be NULL, if IO is closed in the
diff --git a/class.c b/class.c
index 8132f8c5ca..666548dde3 100644
--- a/class.c
+++ b/class.c
@@ -14,7 +14,6 @@
#include "rubysig.h"
#include "node.h"
#include "st.h"
-#include "version.h"
#include <ctype.h>
extern st_table *rb_class_tbl;
diff --git a/hash.c b/hash.c
index cc9af8a4f0..2743ad0e24 100644
--- a/hash.c
+++ b/hash.c
@@ -16,7 +16,6 @@
#include "st.h"
#include "util.h"
#include "rubysig.h"
-#include "version.h"
#ifdef __APPLE__
#include <crt_externs.h>
diff --git a/string.c b/string.c
index eebc61cd10..e960f2078e 100644
--- a/string.c
+++ b/string.c
@@ -14,7 +14,6 @@
#include "ruby.h"
#include "re.h"
-#include "version.h"
#define BEG(no) regs->beg[no]
#define END(no) regs->end[no]