From 51bb002fdc6d19e194ffec439c494c6252422f3f Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 17 Feb 2017 05:45:44 +0000 Subject: DEPRECATED_INTERNAL_FEATURE * error.c (ruby_deprecated_internal_feature): renamed, to explicitly represent deprecation. * internal.h (DEPRECATED_INTERNAL_FEATURE): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57643 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- error.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'error.c') diff --git a/error.c b/error.c index 8c5430a134..d174464bbf 100644 --- a/error.c +++ b/error.c @@ -132,23 +132,23 @@ rb_syntax_error_append(VALUE exc, VALUE file, int line, int column, void rb_compile_error_with_enc(const char *file, int line, void *enc, const char *fmt, ...) { - ONLY_FOR_INTERNAL_USE("rb_compile_error_with_enc()"); + DEPRECATED_INTERNAL_FEATURE("rb_compile_error_with_enc()"); } void rb_compile_error(const char *file, int line, const char *fmt, ...) { - ONLY_FOR_INTERNAL_USE("rb_compile_error()"); + DEPRECATED_INTERNAL_FEATURE("rb_compile_error()"); } void rb_compile_error_append(const char *fmt, ...) { - ONLY_FOR_INTERNAL_USE("rb_compile_error_append()"); + DEPRECATED_INTERNAL_FEATURE("rb_compile_error_append()"); } void -ruby_only_for_internal_use(const char *func) +ruby_deprecated_internal_feature(const char *func) { rb_print_backtrace(); rb_fatal("%s is only for internal use and deprecated; do not use", func); -- cgit v1.2.3