summaryrefslogtreecommitdiff
path: root/io.c
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2019-12-20 15:05:10 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2019-12-20 15:09:23 +0900
commit2b2030f265e4ec0782de9c8dd9f8828a1a0af1b5 (patch)
tree7bfcd9b4fa53150626753f8c9e32c33571f73d58 /io.c
parent7a94225e7d04f17ddd37433c3904b04fec97f281 (diff)
Refined the warning message for $, and $;
[Bug #16438]
Diffstat (limited to 'io.c')
-rw-r--r--io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/io.c b/io.c
index caef68c769..42528c0fd5 100644
--- a/io.c
+++ b/io.c
@@ -7543,7 +7543,7 @@ rb_output_fs_setter(VALUE val, ID id, VALUE *var)
{
rb_str_setter(val, id, &val);
if (!NIL_P(val)) {
- rb_warn("non-nil $, will be deprecated");
+ rb_warn_deprecated("`$,'", NULL);
}
*var = val;
}