summaryrefslogtreecommitdiffstats
path: root/stream.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2016-05-07 18:41:19 -0700
committerKaz Kylheku <kaz@kylheku.com>2016-05-07 18:41:19 -0700
commitdef25d140d3e36097fd1596e3100ee105aa7add3 (patch)
treedbde2f1cccb2a7be872658127d6e5cacb4731811 /stream.c
parent5ad51d6a6df972d3d596061d3a72851ef1e1d12c (diff)
downloadtxr-def25d140d3e36097fd1596e3100ee105aa7add3.tar.gz
txr-def25d140d3e36097fd1596e3100ee105aa7add3.tar.bz2
txr-def25d140d3e36097fd1596e3100ee105aa7add3.zip
Redundant addr in printed rep of string-input-stream.
* stream.c (string_in_get_prop): Do not format stream address into name; the general stream_print_op already adds that.
Diffstat (limited to 'stream.c')
-rw-r--r--stream.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stream.c b/stream.c
index 4c6e3584..358c6eac 100644
--- a/stream.c
+++ b/stream.c
@@ -1573,7 +1573,7 @@ static val string_in_get_prop(val stream, val ind)
struct string_in *s = coerce(struct string_in *, stream->co.handle);
struct strm_ops *ops = coerce(struct strm_ops *, stream->co.ops);
val name = static_str(ops->name);
- return format(nil, lit("~a ~s ~p"), name, s->string, stream, nao);
+ return format(nil, lit("~a ~s"), name, s->string, nao);
}
return nil;