summaryrefslogtreecommitdiff
path: root/libguile/stime.c
diff options
context:
space:
mode:
authorMarius Vollmer <mvo@zagadka.de>2006-01-29 00:23:28 +0000
committerMarius Vollmer <mvo@zagadka.de>2006-01-29 00:23:28 +0000
commit661ae7ab6be5aec4d6107902cff94dbb8952a24a (patch)
treed3e367c7f0dfd442645c5c2e1c87f4f4a7fc54c5 /libguile/stime.c
parent15ccf10bf2d7cb15ec46f2eb62c6eb86827c9108 (diff)
downloadguile-661ae7ab6be5aec4d6107902cff94dbb8952a24a.tar.gz
Renamed the "frames" that are related to dynamic-wind to "dynamic
contexts. Renamed all functions from scm_frame_ to scm_dynwind_. Updated documentation.
Diffstat (limited to 'libguile/stime.c')
-rw-r--r--libguile/stime.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libguile/stime.c b/libguile/stime.c
index 591b20c8c..c6ed7c2eb 100644
--- a/libguile/stime.c
+++ b/libguile/stime.c
@@ -525,14 +525,14 @@ SCM_DEFINE (scm_mktime, "mktime", 1, 1, 0,
char **oldenv;
int err;
- scm_frame_begin (0);
+ scm_dynwind_begin (0);
bdtime2c (sbd_time, &lt, SCM_ARG1, FUNC_NAME);
#if HAVE_STRUCT_TM_TM_ZONE
- scm_frame_free ((char *)lt.tm_zone);
+ scm_dynwind_free ((char *)lt.tm_zone);
#endif
- scm_frame_critical_section (SCM_BOOL_F);
+ scm_dynwind_critical_section (SCM_BOOL_F);
oldenv = setzone (zone, SCM_ARG2, FUNC_NAME);
#ifdef LOCALTIME_CACHE
@@ -589,7 +589,7 @@ SCM_DEFINE (scm_mktime, "mktime", 1, 1, 0,
if (zname)
free (zname);
- scm_frame_end ();
+ scm_dynwind_end ();
return result;
}
#undef FUNC_NAME