diff options
author | Jim Blandy <jimb@red-bean.com> | 1996-09-11 20:28:10 +0000 |
---|---|---|
committer | Jim Blandy <jimb@red-bean.com> | 1996-09-11 20:28:10 +0000 |
commit | c828e6ad2b6567cda7e3b839b8b4cbc9ce56ea9e (patch) | |
tree | fbdc42e5e7f753394f66439f7a34a17478e28e09 /libguile/ioext.h | |
parent | 3d40d7b66a00076a85f0e1cfd97f9a04f117eaa2 (diff) | |
download | guile-c828e6ad2b6567cda7e3b839b8b4cbc9ce56ea9e.tar.gz |
* ioext.h: (scm_sys_isatty_p): Typo.
Diffstat (limited to 'libguile/ioext.h')
-rw-r--r-- | libguile/ioext.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/ioext.h b/libguile/ioext.h index 0971da74b..9294f2223 100644 --- a/libguile/ioext.h +++ b/libguile/ioext.h @@ -57,7 +57,7 @@ extern SCM scm_sys_freopen (SCM filename, SCM modes, SCM port); extern SCM scm_sys_duplicate_port (SCM oldpt, SCM modes); extern SCM scm_sys_redirect_port (SCM into_pt, SCM from_pt); extern SCM scm_sys_fileno (SCM port); -extern SCM scm_sys_isatty (SCM port); +extern SCM scm_sys_isatty_p (SCM port); extern SCM scm_sys_fdopen (SCM fdes, SCM modes); extern SCM scm_sys_primitive_move_to_fdes (SCM port, SCM fd); extern void scm_setfileno (FILE *fs, int fd); @@ -72,7 +72,7 @@ extern SCM scm_sys_freopen (); extern SCM scm_sys_duplicate_port (); extern SCM scm_sys_redirect_port (); extern SCM scm_sys_fileno (); -extern SCM scm_sys_isatty (); +extern SCM scm_sys_isatty_p (); extern SCM scm_sys_fdopen (); extern SCM scm_sys_primitive_move_to_fdes (); extern void scm_setfileno (); |