summaryrefslogtreecommitdiff
path: root/class.c
diff options
context:
space:
mode:
Diffstat (limited to 'class.c')
-rw-r--r--class.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/class.c b/class.c
index 4b93841d9f..298161860f 100644
--- a/class.c
+++ b/class.c
@@ -564,8 +564,8 @@ rb_class_instance_methods(argc, argv, mod)
rb_scan_args(argc, argv, "01", &recur);
if (argc == 0) {
-#if RUBY_RELEASE_CODE < 20040101
- rb_warn("instance_methods parameter will default to 'true' in Jan 2004");
+#if RUBY_VERSION_CODE < 181
+ rb_warn("instance_methods parameter will default to 'true' after 1.8.1");
#else
recur = Qtrue;
#endif
@@ -583,8 +583,8 @@ rb_class_protected_instance_methods(argc, argv, mod)
rb_scan_args(argc, argv, "01", &recur);
if (argc == 0) {
-#if RUBY_RELEASE_CODE < 20040101
- rb_warn("protected_instance_methods parameter will default to 'true' in Jan 2004");
+#if RUBY_VERSION_CODE < 181
+ rb_warn("protected_instance_methods parameter will default to 'true' after 1.8.1");
#else
recur = Qtrue;
#endif
@@ -602,8 +602,8 @@ rb_class_private_instance_methods(argc, argv, mod)
rb_scan_args(argc, argv, "01", &recur);
if (argc == 0) {
-#if RUBY_RELEASE_CODE < 20040101
- rb_warn("private_instance_methods parameter will default to 'true' in Jan 2004");
+#if RUBY_VERSION_CODE < 181
+ rb_warn("private_instance_methods parameter will default to 'true' after 1.8.1");
#else
recur = Qtrue;
#endif
@@ -621,8 +621,8 @@ rb_class_public_instance_methods(argc, argv, mod)
rb_scan_args(argc, argv, "01", &recur);
if (argc == 0) {
-#if RUBY_RELEASE_CODE < 20040101
- rb_warn("public_instance_methods parameter will default to 'true' in Jan 2004");
+#if RUBY_VERSION_CODE < 181
+ rb_warn("public_instance_methods parameter will default to 'true' after 1.8.1");
#else
recur = Qtrue;
#endif
@@ -641,8 +641,8 @@ rb_obj_singleton_methods(argc, argv, obj)
rb_scan_args(argc, argv, "01", &recur);
if (argc == 0) {
-#if RUBY_RELEASE_CODE < 20040101
- rb_warn("singleton_methods parameter will default to 'true' in Jan 2004");
+#if RUBY_VERSION_CODE < 181
+ rb_warn("singleton_methods parameter will default to 'true' after 1.8.1");
#else
recur = Qtrue;
#endif