diff options
author | Marius Vollmer <mvo@zagadka.de> | 2001-08-26 21:54:11 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 2001-08-26 21:54:11 +0000 |
commit | f5fd8aa2a70c16729bd8df6e4f012ade202f66ce (patch) | |
tree | ff2ccab090e36c3b7519c894349204b953b37d76 /libguile/ioext.c | |
parent | 7e8ef316ad8bae2a595ffb270f48cf054ae6bcc0 (diff) | |
download | guile-f5fd8aa2a70c16729bd8df6e4f012ade202f66ce.tar.gz |
Replaced "scm_t_portable" with "scm_port_table" which was an artifact
from the great "scm_*_t -> scm_t_" renaming.
Diffstat (limited to 'libguile/ioext.c')
-rw-r--r-- | libguile/ioext.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libguile/ioext.c b/libguile/ioext.c index 759e78c38..4cb28ad62 100644 --- a/libguile/ioext.c +++ b/libguile/ioext.c @@ -300,11 +300,11 @@ SCM_DEFINE (scm_fdes_to_ports, "fdes->ports", 1, 0, 0, SCM_VALIDATE_INUM_COPY (1,fd,int_fd); - for (i = 0; i < scm_t_portable_size; i++) + for (i = 0; i < scm_port_table_size; i++) { - if (SCM_OPFPORTP (scm_t_portable[i]->port) - && ((scm_t_fport *) scm_t_portable[i]->stream)->fdes == int_fd) - result = scm_cons (scm_t_portable[i]->port, result); + if (SCM_OPFPORTP (scm_port_table[i]->port) + && ((scm_t_fport *) scm_port_table[i]->stream)->fdes == int_fd) + result = scm_cons (scm_port_table[i]->port, result); } return result; } |