From 0f0c2617858e53003dfd2396033c8115c7c2249c Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Wed, 9 Oct 2019 12:46:13 -0400 Subject: [PATCH] Remove extraneous chars --- mstreams.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mstreams.c b/mstreams.c index 69cba983..13474195 100644 --- a/mstreams.c +++ b/mstreams.c @@ -34,7 +34,7 @@ if (obj_is_not_closure(clo)) { \ object Cyc_heap_alloc_port(void *data, port_type *p); port_type *Cyc_io_open_input_string(void *data, object str) { -// // Allocate port on the heap so the location of mem_buf does not change + // Allocate port on the heap so the location of mem_buf does not change port_type *p; make_input_port(sp, NULL, CYC_IO_BUF_LEN); @@ -55,7 +55,7 @@ port_type *Cyc_io_open_input_string(void *data, object str) port_type *Cyc_io_open_input_bytevector(void *data, object bv) { -// // Allocate port on the heap so the location of mem_buf does not change + // Allocate port on the heap so the location of mem_buf does not change port_type *p; make_input_port(sp, NULL, CYC_IO_BUF_LEN);