ruby-changes:43067
From: nobu <ko1@a...>
Date: Tue, 24 May 2016 16:28:38 +0900 (JST)
Subject: [ruby-changes:43067] nobu:r55141 (trunk): fix missing argument
nobu 2016-05-24 16:28:34 +0900 (Tue, 24 May 2016) New Revision: 55141 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=55141 Log: fix missing argument Modified files: trunk/configure.in Index: configure.in =================================================================== --- configure.in (revision 55140) +++ configure.in (revision 55141) @@ -1808,8 +1808,8 @@ RUBY_FUNC_ATTRIBUTE(__deprecated__("by " https://github.com/ruby/ruby/blob/trunk/configure.in#L1808 RUBY_TYPE_ATTRIBUTE(__deprecated__ mesg, DEPRECATED_TYPE(mesg,x), rb_cv_type_deprecated) RUBY_FUNC_ATTRIBUTE(__noinline__, NOINLINE) RUBY_FUNC_ATTRIBUTE(__always_inline__, ALWAYS_INLINE) -RUBY_FUNC_ATTRIBUTE(__error__ mesg, ERRORFUNC(mesg), rb_cv_func___error__) -RUBY_FUNC_ATTRIBUTE(__warning__ mesg, WARNINGFUNC(mesg), rb_cv_func___warning__) +RUBY_FUNC_ATTRIBUTE(__error__ mesg, ERRORFUNC(mesg,x), rb_cv_func___error__) +RUBY_FUNC_ATTRIBUTE(__warning__ mesg, WARNINGFUNC(mesg,x), rb_cv_func___warning__) RUBY_FUNC_ATTRIBUTE(__weak__, WEAK, rb_cv_func_weak) if test "$rb_cv_func_weak" != x; then AC_DEFINE(HAVE_FUNC_WEAK) -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/