summaryrefslogtreecommitdiff
path: root/eval.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-09-06 07:47:47 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-09-06 07:47:47 +0000
commitf29380628f569131bd7e917b6b9eb05734ffb81e (patch)
tree89cbb92857f1c9d3f35eadd421cbdc1bba146610 /eval.c
parent20af3b306654bddff93a14216eae58c72f969b4e (diff)
* class.c (rb_include_module): should check whole ancestors to
avoid duplicate module inclusion. * string.c (trnext): should check backslash before updating "now" position. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1737 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/eval.c b/eval.c
index 3802568377..78cb432967 100644
--- a/eval.c
+++ b/eval.c
@@ -5311,7 +5311,7 @@ rb_feature_p(feature, wait)
return Qtrue;
}
-static const char *const loadable_ext[] = {
+static const char * const loadable_ext[] = {
".rb", DLEXT,
#ifdef DLEXT2
DLEXT2,