* file.c (sys_fail2): show method function names but not
  "sys_fail2".

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51701 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2015-08-27 01:03:55 +00:00
Родитель 8bf9687e6c
Коммит dc05dfd496
1 изменённых файлов: 11 добавлений и 2 удалений

13
file.c
Просмотреть файл

@ -2687,9 +2687,14 @@ rb_file_s_utime(int argc, VALUE *argv)
return LONG2FIX(n);
}
NORETURN(static void sys_fail2(VALUE,VALUE));
#ifdef RUBY_FUNCTION_NAME_STRING
# define sys_fail2(s1, s2) sys_fail2_in(RUBY_FUNCTION_NAME_STRING, s1, s2)
#else
# define sys_fail2_in(func, s1, s2) sys_fail2(s1, s2)
#endif
NORETURN(static void sys_fail2_in(const char *,VALUE,VALUE));
static void
sys_fail2(VALUE s1, VALUE s2)
sys_fail2_in(const char *func, VALUE s1, VALUE s2)
{
VALUE str;
#ifdef MAX_PATH
@ -2706,7 +2711,11 @@ sys_fail2(VALUE s1, VALUE s2)
rb_str_cat2(str, ", ");
rb_str_append(str, rb_str_ellipsize(s2, max_pathlen));
rb_str_cat2(str, ")");
#ifdef RUBY_FUNCTION_NAME_STRING
rb_sys_fail_path_in(func, str);
#else
rb_sys_fail_path(str);
#endif
}
#ifdef HAVE_LINK