From be2588b87dfd508c44e831d11737cb41a6d6f7a9 Mon Sep 17 00:00:00 2001 From: Marius Vollmer Date: Wed, 9 Oct 2002 22:45:07 +0000 Subject: [PATCH] (SCM_ASYNC_TICK): Do without the scm_active_asyncs abbrev. --- libguile/__scm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libguile/__scm.h b/libguile/__scm.h index 4539800d2..700ff9d7f 100644 --- a/libguile/__scm.h +++ b/libguile/__scm.h @@ -408,7 +408,7 @@ typedef long SCM_STACKITEM; #define SCM_ASYNC_TICK /*fixme* should change names */ \ do { \ - if (scm_active_asyncs != SCM_EOL) \ + if (scm_root->active_asyncs != SCM_EOL) \ scm_async_click (); \ } while (0)