summaryrefslogtreecommitdiff
path: root/parse.y
diff options
context:
space:
mode:
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y11
1 files changed, 3 insertions, 8 deletions
diff --git a/parse.y b/parse.y
index b0f84e1540..a6a3905a9f 100644
--- a/parse.y
+++ b/parse.y
@@ -10642,14 +10642,9 @@ next_id(VALUE str)
new_id:
if (symenc != enc) rb_enc_associate(str, symenc);
if ((nid = next_id_base()) == (ID)-1) {
- if (len > 20) {
- rb_raise(rb_eRuntimeError, "symbol table overflow (symbol %.20s...)",
- name);
- }
- else {
- rb_raise(rb_eRuntimeError, "symbol table overflow (symbol %.*s)",
- (int)len, name);
- }
+ str = rb_str_ellipsize(str, 20);
+ rb_raise(rb_eRuntimeError, "symbol table overflow (symbol %"PRIsVALUE")",
+ str);
}
id |= nid;
id |= ID_STATIC_SYM;