summaryrefslogtreecommitdiff
path: root/string.c
diff options
context:
space:
mode:
Diffstat (limited to 'string.c')
-rw-r--r--string.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/string.c b/string.c
index 7fd2d94e59..7d865d669a 100644
--- a/string.c
+++ b/string.c
@@ -5332,18 +5332,19 @@ tr_setup_table(VALUE str, char stable[TR_TABLE_SIZE], int first,
else {
VALUE key = UINT2NUM(c);
- if (!table) {
- table = rb_hash_new();
+ if (!table && (first || *tablep || stable[256])) {
if (cflag) {
ptable = *ctablep;
+ table = ptable ? ptable : rb_hash_new();
*ctablep = table;
}
else {
+ table = rb_hash_new();
ptable = *tablep;
*tablep = table;
}
}
- if (!ptable || !NIL_P(rb_hash_aref(ptable, key))) {
+ if (table && (!ptable || (cflag ^ !NIL_P(rb_hash_aref(ptable, key))))) {
rb_hash_aset(table, key, Qtrue);
}
}
@@ -5351,6 +5352,9 @@ tr_setup_table(VALUE str, char stable[TR_TABLE_SIZE], int first,
for (i=0; i<256; i++) {
stable[i] = stable[i] && buf[i];
}
+ if (!table && !cflag) {
+ *tablep = 0;
+ }
}