Remove extraneous chars

This commit is contained in:
Justin Ethier 2019-10-09 12:46:13 -04:00
parent 900605f1fe
commit 0f0c261785

View file

@ -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);