1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 14:00:21 +02:00

* * gh_io.c (gh_write): New function.

This commit is contained in:
Mikael Djurfeldt 1997-08-13 14:55:34 +00:00
parent 9538471795
commit 4ed948d4f1
2 changed files with 17 additions and 0 deletions

View file

@ -1,3 +1,14 @@
Wed Aug 13 15:38:44 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
* * gh_io.c (gh_write): New function.
* * gh_eval.c (catch_with_saved_stack): Removed. Replaced by:
throw.c (scm_internal_stack_catch): New sibling to the other catch
functions. Code moved from gh_eval.c.
throw.h: Added header.
gh_eval.c (gh_eval_str_with_stack_saving_handler): Renamed call to
scm_internal_stack_catch.
Tue Jul 29 01:03:08 1997 Gary Houston <ghouston@actrix.gen.nz>
* ioext.h: fix up prototypes.

View file

@ -50,6 +50,12 @@ gh_display (SCM x)
scm_display (x, scm_current_output_port ());
}
void
gh_write (SCM x)
{
scm_write (x, scm_current_output_port ());
}
void
gh_newline ()
{