summaryrefslogtreecommitdiff
path: root/libguile/numbers.c
diff options
context:
space:
mode:
authorHan-Wen Nienhuys <hanwen@lilypond.org>2002-08-28 22:50:32 +0000
committerHan-Wen Nienhuys <hanwen@lilypond.org>2002-08-28 22:50:32 +0000
commit8fa5786d7c10e8ee657aad8bf24ec5f229c5258e (patch)
tree067da11595f94a1861a421a849a0aabd75aa472b /libguile/numbers.c
parent7200a36b83f0dc9faa846776ad4e6804b8c5da96 (diff)
downloadguile-8fa5786d7c10e8ee657aad8bf24ec5f229c5258e.tar.gz
(scm_make_real): prevent reordering of statements
num2float.i.c (FLOAT2NUM): idem
Diffstat (limited to 'libguile/numbers.c')
-rw-r--r--libguile/numbers.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/numbers.c b/libguile/numbers.c
index ebdacdc8f..8393c62ca 100644
--- a/libguile/numbers.c
+++ b/libguile/numbers.c
@@ -3021,7 +3021,7 @@ scm_make_real (double x)
OK to interchange the initialization above and the one below. We
don't want that, of course.
*/
- scm_remember_1 (z);
+ scm_remember_upto_here_1 (z);
SCM_REAL_VALUE (z) = x;
return z;
}