summaryrefslogtreecommitdiff
path: root/st.h
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-09-22 04:47:37 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-09-22 04:47:37 +0000
commit9dcc08646f0a26b61ae162daffeb0ce5fbc60f0e (patch)
treebf615848ad985f59c4154afcc05d8765506ddb51 /st.h
parent94fe90346327efaea9c7dff75ea9ff0ed5a6ed04 (diff)
* hash.c (rb_hash_rehash): add iteration check. [ruby-dev:24301]
* st.c (st_foreach): add deep check. * array.c (rb_ary_collect_bang): element size might change during comparison. [ruby-dev:24300] * array.c (rb_ary_reject_bang): ditto. [ruby-dev:24300] * array.c (rb_ary_eql): ditto. [ruby-dev:24300] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@6949 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'st.h')
-rw-r--r--st.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/st.h b/st.h
index bbb4306abf..cdf8a1220b 100644
--- a/st.h
+++ b/st.h
@@ -25,7 +25,7 @@ struct st_table {
#define st_is_member(table,key) st_lookup(table,key,(st_data_t *)0)
-enum st_retval {ST_CONTINUE, ST_STOP, ST_DELETE};
+enum st_retval {ST_CONTINUE, ST_STOP, ST_DELETE, ST_CHECK};
st_table *st_init_table(struct st_hash_type *);
st_table *st_init_table_with_size(struct st_hash_type *, int);