123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- #ifdef HAVE_CONFIG_H
- # include <config.h>
- #endif
- #define SCM_BUILDING_DEPRECATED_CODE
- #include "libguile/_scm.h"
- #include "libguile/deprecation.h"
- #if (SCM_ENABLE_DEPRECATED == 1)
- SCM
- scm_internal_dynamic_wind (scm_t_guard before,
- scm_t_inner inner,
- scm_t_guard after,
- void *inner_data,
- void *guard_data)
- {
- SCM ans;
- scm_c_issue_deprecation_warning
- ("`scm_internal_dynamic_wind' is deprecated. "
- "Use the `scm_dynwind_begin' / `scm_dynwind_end' API instead.");
- scm_dynwind_begin (SCM_F_DYNWIND_REWINDABLE);
- scm_dynwind_rewind_handler (before, guard_data, SCM_F_WIND_EXPLICITLY);
- scm_dynwind_unwind_handler (after, guard_data, SCM_F_WIND_EXPLICITLY);
- ans = inner (inner_data);
- scm_dynwind_end ();
- return ans;
- }
- void
- scm_i_init_deprecated ()
- {
- #include "libguile/deprecated.x"
- }
- #endif
|