summaryrefslogtreecommitdiffstats
path: root/error.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-03-18 03:48:03 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-03-18 03:48:03 +0000
commit8aff9b5a2a0eb853f1e33b8bf17102edf7488921 (patch)
tree9cdee258609293b96540c67b67f760f5429541ec /error.c
parent7068be757738844e9b1eec545f3f43b58d1bc2da (diff)
downloadruby-8aff9b5a2a0eb853f1e33b8bf17102edf7488921.tar.gz
ruby-8aff9b5a2a0eb853f1e33b8bf17102edf7488921.tar.xz
ruby-8aff9b5a2a0eb853f1e33b8bf17102edf7488921.zip
* error.c (report_bug): rb_bug can be caused by extension
libraries. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@23000 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'error.c')
-rw-r--r--error.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/error.c b/error.c
index 95f98ca4d..a5130471b 100644
--- a/error.c
+++ b/error.c
@@ -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");
}
}