* error.c (report_bug): rb_bug can be caused by extension

libraries.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23000 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2009-03-18 03:48:03 +00:00
Родитель d0182b81b3
Коммит 402b8f5de9
2 изменённых файлов: 8 добавлений и 1 удалений

Просмотреть файл

@ -1,3 +1,8 @@
Wed Mar 18 12:48:01 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
* error.c (report_bug): rb_bug can be caused by extension
libraries.
Wed Mar 18 02:41:33 2009 Masatoshi SEKI <m_seki@mva.biglobe.ne.jp>
* lib/drb/drb.rb (open_server_inaddr_any): fixed multiple network

Просмотреть файл

@ -216,7 +216,9 @@ report_bug(const char *file, int line, const char *fmt, va_list args)
fprintf(out,
"[NOTE]\n"
"You may have encountered a bug in the Ruby interpreter. Bug reports are welcome.\n"
"You may have encountered a bug in the Ruby interpreter"
" or extension libraries.\n"
"Bug reports are welcome.\n"
"For details: http://www.ruby-lang.org/bugreport.html\n\n");
}
}