diff options
author | Marius Vollmer <mvo@zagadka.de> | 2005-01-24 23:41:14 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 2005-01-24 23:41:14 +0000 |
commit | 76da80e7881947ebcdb647e5ce4be029fece29f2 (patch) | |
tree | 9a56249fecf0002eefc25c6a0bfeb53a2b277d7f /libguile/__scm.h | |
parent | a54a94b39707f47a1f30533bcf7664094d65d073 (diff) | |
download | guile-76da80e7881947ebcdb647e5ce4be029fece29f2.tar.gz |
Reverted changed from 2005/01/24 19:14:54, which was a commit to the
wrong branch. Sorry.
Diffstat (limited to 'libguile/__scm.h')
-rw-r--r-- | libguile/__scm.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/__scm.h b/libguile/__scm.h index 8fbd43c83..6ab774cd6 100644 --- a/libguile/__scm.h +++ b/libguile/__scm.h @@ -508,9 +508,9 @@ do { \ (private or global, with unwind where necessary), and remove the remaining DEFER/ALLOWs. */ -#define SCM_DEFER_INTS do { } while (0); +#define SCM_DEFER_INTS scm_rec_mutex_lock (&scm_i_defer_mutex); -#define SCM_ALLOW_INTS do { } while (0); +#define SCM_ALLOW_INTS scm_rec_mutex_unlock (&scm_i_defer_mutex); #define SCM_REDEFER_INTS SCM_DEFER_INTS |