diff options
author | Marius Vollmer <mvo@zagadka.de> | 2005-12-06 20:27:59 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 2005-12-06 20:27:59 +0000 |
commit | 54428bb84e2f212d6c24ef5264780d88fd31da60 (patch) | |
tree | 5f1acf0d1532178e3bc7b7228d177fce11b7bb3b /doc/ref/api-init.texi | |
parent | b54df25486b29f4759b71d3c1af51010e26fc2f3 (diff) | |
download | guile-54428bb84e2f212d6c24ef5264780d88fd31da60.tar.gz |
Removed scm_leave_guile, scm_enter_guile and all references to
them since they are no longer in the API.
Diffstat (limited to 'doc/ref/api-init.texi')
-rw-r--r-- | doc/ref/api-init.texi | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/ref/api-init.texi b/doc/ref/api-init.texi index 651b2b98f..26e6e71ef 100644 --- a/doc/ref/api-init.texi +++ b/doc/ref/api-init.texi @@ -13,9 +13,9 @@ put itself into guile mode with either @code{scm_with_guile} or @code{scm_init_guile}. The global state of Guile is initialized automatically when the first thread enters guile mode. -When a thread wants to block outside of a Guile API function, it should -leave guile mode temporarily with either @code{scm_without_guile} or -@code{scm_leave_guile}, @xref{Blocking}. +When a thread wants to block outside of a Guile API function, it +should leave guile mode temporarily with @code{scm_without_guile}, +@xref{Blocking}. Threads that are created by @code{call-with-new-thread} or @code{scm_spawn_thread} start out in guile mode so you don't need to @@ -51,8 +51,8 @@ See @code{scm_init_guile} for another approach at initializing Guile that does not have this restriction. It is OK to call @code{scm_with_guile} while a thread has temporarily -left guile mode via @code{scm_without_guile} or @code{scm_leave_guile}. -It will then simply temporarily enter guile mode again. +left guile mode via @code{scm_without_guile}. It will then simply +temporarily enter guile mode again. @end deftypefn @deftypefn {C Function} void scm_init_guile () |