diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2017-05-15 20:08:31 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2017-05-15 20:08:31 -0700 |
commit | e87568a3d43593d53c1d294e4f42f46232877855 (patch) | |
tree | 0728be13f7f044972d319abe8240c2f32e95ff9c /stream.c | |
parent | 87e185aa2d2cfe18df7e89ddfd05b2dd262fe791 (diff) | |
download | txr-e87568a3d43593d53c1d294e4f42f46232877855.tar.gz txr-e87568a3d43593d53c1d294e4f42f46232877855.tar.bz2 txr-e87568a3d43593d53c1d294e4f42f46232877855.zip |
cobj: rename poorly named default operation.
Renaming cobj_hash_op to cobj_eq_hash_op. This function is
only appropriate to use with COBJ objects which use
eq as their equal funtion. I've spotted one instance of an
inappropriate use which have to be addressed by a different
commit: the equal function is other than eq, but cobj_hash_op
is used for the equal hash.
* lib.h (cobj_hash_op): Declaration renamed to
cobj_eq_hash_op.
* hash.c (cobj_hash_op): Renamed to cobj_eq_hash_op.
(hash_iter_ops): Refer to renamed cobj_hash_eq_op.
* ffi.c (ffi_type_builtin_ops, ffi_type_struct_ops,
ffi_type_ptr_ops, ffi-closure_ops, ffi_call_desc_ops):
Likewise.
* lib.c (cptr_ops): Likewise.
* parser.c (parser_ops): Likewise.
* rand.c (random_state_ops): Likewise.
* regex.c (char_set_ops, regex_obj_ops): Likewise.
* socket.c (dgram_strm_ops): Likewise.
* stream.c (null_ops, stdio_ops, tail_ops, pipe_ops, dir_ops,
string_in_ops, byte_in_ops, strlist_in_ops, string_out_ops,
strlist_out_ops, cat_stream_ops, record_adapter_ops):
Likewise.
* struct.c (struct_type_ops): Likewise.
* sysif.c (cptr_dl_ops): Likewise.
* syslog.c (syslog_strm_ops): Likewise.
* unwind.c (cont_ops): Likewise.
Diffstat (limited to 'stream.c')
-rw-r--r-- | stream.c | 24 |
1 files changed, 12 insertions, 12 deletions
@@ -340,7 +340,7 @@ static struct strm_ops null_ops = stream_print_op, stream_destroy_op, stream_mark_op, - cobj_hash_op), + cobj_eq_hash_op), wli("null-stream"), null_put_string, null_put_char, null_put_byte, null_get_line, null_get_char, null_get_byte, @@ -910,7 +910,7 @@ static struct strm_ops stdio_ops = stdio_stream_print, stdio_stream_destroy, stdio_stream_mark, - cobj_hash_op), + cobj_eq_hash_op), wli("file-stream"), stdio_put_string, stdio_put_char, @@ -1099,7 +1099,7 @@ static struct strm_ops tail_ops = stdio_stream_print, stdio_stream_destroy, stdio_stream_mark, - cobj_hash_op), + cobj_eq_hash_op), wli("tail-stream"), stdio_put_string, stdio_put_char, @@ -1194,7 +1194,7 @@ static struct strm_ops pipe_ops = stdio_stream_print, stdio_stream_destroy, stdio_stream_mark, - cobj_hash_op), + cobj_eq_hash_op), wli("pipe-stream"), stdio_put_string, stdio_put_char, @@ -1550,7 +1550,7 @@ static struct strm_ops dir_ops = stream_print_op, dir_destroy, dir_mark, - cobj_hash_op), + cobj_eq_hash_op), wli("dir-stream"), 0, 0, 0, dir_get_line, @@ -1669,7 +1669,7 @@ static struct strm_ops string_in_ops = stream_print_op, stream_destroy_op, string_in_stream_mark, - cobj_hash_op), + cobj_eq_hash_op), wli("string-input-stream"), 0, 0, 0, string_in_get_line, @@ -1748,7 +1748,7 @@ static struct strm_ops byte_in_ops = stream_print_op, byte_in_stream_destroy, stream_mark_op, - cobj_hash_op), + cobj_eq_hash_op), wli("byte-input-stream"), 0, 0, 0, 0, 0, byte_in_get_byte, @@ -1882,7 +1882,7 @@ static struct strm_ops strlist_in_ops = stream_print_op, stream_destroy_op, strlist_in_stream_mark, - cobj_hash_op), + cobj_eq_hash_op), wli("strlist-input-stream"), 0, 0, 0, strlist_in_get_line, @@ -2023,7 +2023,7 @@ static struct strm_ops string_out_ops = stream_print_op, string_out_stream_destroy, stream_mark_op, - cobj_hash_op), + cobj_eq_hash_op), wli("string-output-stream"), string_out_put_string, string_out_put_char, @@ -2144,7 +2144,7 @@ static struct strm_ops strlist_out_ops = stream_print_op, stream_destroy_op, strlist_out_mark, - cobj_hash_op), + cobj_eq_hash_op), wli("strlist-output-stream"), strlist_out_put_string, strlist_out_put_char, @@ -2324,7 +2324,7 @@ static struct strm_ops cat_stream_ops = cat_stream_print, stream_destroy_op, cat_mark, - cobj_hash_op), + cobj_eq_hash_op), wli("catenated-stream"), 0, 0, 0, cat_get_line, @@ -2568,7 +2568,7 @@ static struct strm_ops record_adapter_ops = stream_print_op, stream_destroy_op, record_adapter_mark_op, - cobj_hash_op), + cobj_eq_hash_op), wli("record-adapter"), delegate_put_string, delegate_put_char, delegate_put_byte, record_adapter_get_line, delegate_get_char, delegate_get_byte, |