diff options
author | Andy Wingo <wingo@pobox.com> | 2016-05-13 11:34:52 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2016-05-13 11:34:52 +0200 |
commit | 08574987d95c1dbe019398ef5aeb5642f08ac49c (patch) | |
tree | af1e31bd97b0305692e3cc23524236e7fc218250 /libguile/rw.c | |
parent | e5d2f4e566586f768bda99c28a74fd2303ecace1 (diff) |
Remove scm_t_port_internal
* libguile/ports-internal.h (SCM_PORT): Rename from SCM_PTAB_ENTRY.
(scm_t_port_internal, SCM_PORT_GET_INTERNAL): Remove.
(SCM_FILENAME, SCM_SET_FILENAME, SCM_LINUM, SCM_COL): Adapt.
* libguile/ports.c:
* libguile/poll.c:
* libguile/ioext.c:
* libguile/fports.c:
* libguile/filesys.c:
* libguile/print.c:
* libguile/read.c:
* libguile/rw.c:
* libguile/strings.c: Adapt.
Diffstat (limited to 'libguile/rw.c')
-rw-r--r-- | libguile/rw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/rw.c b/libguile/rw.c index 0b89bc2e7..91941a4fb 100644 --- a/libguile/rw.c +++ b/libguile/rw.c @@ -236,7 +236,7 @@ SCM_DEFINE (scm_write_string_partial, "write-string/partial", 1, 3, 0, SCM_VALIDATE_OPFPORT (2, port); SCM_VALIDATE_OUTPUT_PORT (2, port); - write_buf = SCM_PORT_GET_INTERNAL (port)->write_buf; + write_buf = SCM_PORT (port)->write_buf; /* Filling the last character in the buffer would require a flush. */ |