mirror of
https://github.com/vim/vim.git
synced 2025-10-02 05:04:20 -04:00
updated for version 7.2-247
This commit is contained in:
@@ -635,8 +635,10 @@ dynamic_mzscheme_end(void)
|
|||||||
#endif /* DYNAMIC_MZSCHEME */
|
#endif /* DYNAMIC_MZSCHEME */
|
||||||
|
|
||||||
/* need to put it here for dynamic stuff to work */
|
/* need to put it here for dynamic stuff to work */
|
||||||
#ifdef INCLUDE_MZSCHEME_BASE
|
#if defined(INCLUDE_MZSCHEME_BASE)
|
||||||
# include "mzscheme_base.c"
|
# include "mzscheme_base.c"
|
||||||
|
#elif MZSCHEME_VERSION_MAJOR >= 400
|
||||||
|
# error MzScheme 4.x must include mzscheme_base.c, for MinGW32 you need to define MZSCHEME_GENERATE_BASE=yes
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -875,14 +877,14 @@ startup_mzscheme(void)
|
|||||||
#ifdef INCLUDE_MZSCHEME_BASE
|
#ifdef INCLUDE_MZSCHEME_BASE
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
* versions 4.x do not provide Scheme bindings by defaults
|
* versions 4.x do not provide Scheme bindings by default
|
||||||
* we need to add them explicitly
|
* we need to add them explicitly
|
||||||
*/
|
*/
|
||||||
Scheme_Object *scheme_base_symbol = NULL;
|
Scheme_Object *scheme_base_symbol = NULL;
|
||||||
MZ_GC_DECL_REG(1);
|
MZ_GC_DECL_REG(1);
|
||||||
MZ_GC_VAR_IN_REG(0, scheme_base_symbol);
|
MZ_GC_VAR_IN_REG(0, scheme_base_symbol);
|
||||||
MZ_GC_REG();
|
MZ_GC_REG();
|
||||||
/* invoke function from generated and included base.c */
|
/* invoke function from generated and included mzscheme_base.c */
|
||||||
declare_modules(environment);
|
declare_modules(environment);
|
||||||
scheme_base_symbol = scheme_intern_symbol("scheme/base");
|
scheme_base_symbol = scheme_intern_symbol("scheme/base");
|
||||||
MZ_GC_CHECK();
|
MZ_GC_CHECK();
|
||||||
|
@@ -676,6 +676,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
247,
|
||||||
/**/
|
/**/
|
||||||
246,
|
246,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user