1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

(SCM_F_WIND_EXPLICITELY, SCM_F_WIND_EXPLICITLY): It's "explicitly" not

"explicitely", damn.  Changed all uses.
This commit is contained in:
Marius Vollmer 2004-01-06 17:57:41 +00:00
parent 476e56aa64
commit 62f3c0957e

View file

@ -47,7 +47,7 @@ typedef enum {
} scm_t_frame_flags; } scm_t_frame_flags;
typedef enum { typedef enum {
SCM_F_WIND_EXPLICITELY = (1 << 0) SCM_F_WIND_EXPLICITLY = (1 << 0)
} scm_t_wind_flags; } scm_t_wind_flags;
SCM_API void scm_begin_frame (scm_t_frame_flags); SCM_API void scm_begin_frame (scm_t_frame_flags);
@ -58,6 +58,11 @@ SCM_API void scm_on_unwind (void (*func) (void *), void *data,
SCM_API void scm_on_rewind (void (*func) (void *), void *data, SCM_API void scm_on_rewind (void (*func) (void *), void *data,
scm_t_wind_flags); scm_t_wind_flags);
SCM_API void scm_on_unwind_with_scm (void (*func) (SCM), SCM data,
scm_t_wind_flags);
SCM_API void scm_on_rewind_with_scm (void (*func) (SCM), SCM data,
scm_t_wind_flags);
#ifdef GUILE_DEBUG #ifdef GUILE_DEBUG
SCM_API SCM scm_wind_chain (void); SCM_API SCM scm_wind_chain (void);
#endif /*GUILE_DEBUG*/ #endif /*GUILE_DEBUG*/