diff options
author | Andy Wingo <wingo@pobox.com> | 2013-01-23 09:37:59 +0100 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2013-01-23 09:38:13 +0100 |
commit | 8cdb03c23e3706fd5de58cff44645c5f345b761b (patch) | |
tree | 778cdc1abcad9693bb855454b882ce8f79856b27 | |
parent | e6f7624ad32277d0b59be6aeed62c854da7ad751 (diff) |
fix dynamic-call doc
* doc/ref/api-foreign.texi (Foreign Functions): Fix doc: interrupts are
not deferred in a dynamic-call.
-rw-r--r-- | doc/ref/api-foreign.texi | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/doc/ref/api-foreign.texi b/doc/ref/api-foreign.texi index 57cf8846d..f8ed4ccd7 100644 --- a/doc/ref/api-foreign.texi +++ b/doc/ref/api-foreign.texi @@ -1,7 +1,7 @@ @c -*-texinfo-*- @c This is part of the GNU Guile Reference Manual. @c Copyright (C) 1996, 1997, 2000, 2001, 2002, 2003, 2004, 2007, 2008, -@c 2009, 2010, 2011, 2012 Free Software Foundation, Inc. +@c 2009, 2010, 2011, 2012, 2013 Free Software Foundation, Inc. @c See the file guile.texi for copying conditions. @node Foreign Function Interface @@ -156,9 +156,6 @@ is equivalent to @smallexample (dynamic-call (dynamic-func @var{func} @var{dobj}) #f) @end smallexample - -Interrupts are deferred while the C function is executing (with -@code{SCM_DEFER_INTS}/@code{SCM_ALLOW_INTS}). @end deffn @code{dynamic-call} is not very powerful. It is mostly intended to be |