mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 03:40:34 +02:00
wip
This commit is contained in:
parent
7627abf6ec
commit
d460681c79
2 changed files with 4 additions and 2 deletions
|
@ -279,7 +279,6 @@ SCM_DEFINE (scm_env_module, "env-module", 1, 0, 0,
|
|||
* C level implementation of the standard eval closure
|
||||
*
|
||||
* This increases loading speed substantially.
|
||||
* The code will be replaced by the low-level environments in next release.
|
||||
*/
|
||||
|
||||
static SCM module_make_local_var_x_var;
|
||||
|
|
|
@ -264,6 +264,7 @@ scm_c_with_throw_handler (SCM tag,
|
|||
{
|
||||
SCM pre_unwind, answer;
|
||||
struct pre_unwind_data c;
|
||||
SCM new_dynwinds;
|
||||
|
||||
c.handler = handler;
|
||||
c.handler_data = handler_data;
|
||||
|
@ -272,7 +273,9 @@ scm_c_with_throw_handler (SCM tag,
|
|||
pre_unwind = make_pre_unwind_data (&c);
|
||||
|
||||
SCM_CRITICAL_SECTION_START;
|
||||
scm_i_set_dynwinds (scm_acons (tag, pre_unwind, scm_i_dynwinds ()));
|
||||
new_dynwinds = scm_acons (tag, pre_unwind, SCM_BOOL_F);
|
||||
SCM_SETCDR (new_dynwinds, scm_i_dynwinds ());
|
||||
scm_i_set_dynwinds (new_dynwinds);
|
||||
SCM_CRITICAL_SECTION_END;
|
||||
|
||||
answer = (*body) (body_data);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue