* ioext.c (scm_setfileno): add missing third argument to

scm_misc_error call.
This commit is contained in:
Gary Houston 1997-04-21 05:09:06 +00:00
commit 4fa5885b5c
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Mon Apr 21 05:00:32 1997 Gary Houston <ghouston@actrix.gen.nz>
* ioext.c (scm_setfileno): add missing third argument to
scm_misc_error call.
Sun Apr 20 15:09:31 1997 Jim Blandy <jimb@totoro.cyclic.com>
* eq.c (scm_equal_p): Correctly compare strings of different

View file

@ -413,7 +413,7 @@ scm_setfileno (fs, fd)
#ifdef SET_FILE_FD_FIELD
SET_FILE_FD_FIELD(fs, fd);
#else
scm_misc_error ("scm_setfileno", "Not fully implemented");
scm_misc_error ("scm_setfileno", "Not fully implemented", SCM_EOL);
#endif
}