mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
patch 7.4.1929
Problem: Inconsistent indenting and weird name. Solution: Fix indent, make name all upper case. (Ken Takata)
This commit is contained in:
parent
76ae22fef3
commit
2016ae586b
@ -31,8 +31,8 @@
|
|||||||
# define RUBYEXTERN extern
|
# define RUBYEXTERN extern
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
# if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 24
|
#if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 24
|
||||||
# define USE_RUBY_Integer
|
# define USE_RUBY_INTEGER
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef DYNAMIC_RUBY
|
#ifdef DYNAMIC_RUBY
|
||||||
@ -43,7 +43,7 @@
|
|||||||
*/
|
*/
|
||||||
# define rb_cFalseClass (*dll_rb_cFalseClass)
|
# define rb_cFalseClass (*dll_rb_cFalseClass)
|
||||||
# define rb_cFixnum (*dll_rb_cFixnum)
|
# define rb_cFixnum (*dll_rb_cFixnum)
|
||||||
# if defined(USE_RUBY_Integer)
|
# if defined(USE_RUBY_INTEGER)
|
||||||
# define rb_cInteger (*dll_rb_cInteger)
|
# define rb_cInteger (*dll_rb_cInteger)
|
||||||
# endif
|
# endif
|
||||||
# if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 20
|
# if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 20
|
||||||
@ -325,7 +325,7 @@ static void ruby_vim_init(void);
|
|||||||
static VALUE (*dll_rb_assoc_new) (VALUE, VALUE);
|
static VALUE (*dll_rb_assoc_new) (VALUE, VALUE);
|
||||||
VALUE *dll_rb_cFalseClass;
|
VALUE *dll_rb_cFalseClass;
|
||||||
VALUE *dll_rb_cFixnum;
|
VALUE *dll_rb_cFixnum;
|
||||||
# if defined(USE_RUBY_Integer)
|
# if defined(USE_RUBY_INTEGER)
|
||||||
VALUE *dll_rb_cInteger;
|
VALUE *dll_rb_cInteger;
|
||||||
# endif
|
# endif
|
||||||
# if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 20
|
# if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 20
|
||||||
@ -515,7 +515,7 @@ static struct
|
|||||||
{"rb_assoc_new", (RUBY_PROC*)&dll_rb_assoc_new},
|
{"rb_assoc_new", (RUBY_PROC*)&dll_rb_assoc_new},
|
||||||
{"rb_cFalseClass", (RUBY_PROC*)&dll_rb_cFalseClass},
|
{"rb_cFalseClass", (RUBY_PROC*)&dll_rb_cFalseClass},
|
||||||
{"rb_cFixnum", (RUBY_PROC*)&dll_rb_cFixnum},
|
{"rb_cFixnum", (RUBY_PROC*)&dll_rb_cFixnum},
|
||||||
# if defined(USE_RUBY_Integer)
|
# if defined(USE_RUBY_INTEGER)
|
||||||
{"rb_cInteger", (RUBY_PROC*)&dll_rb_cInteger},
|
{"rb_cInteger", (RUBY_PROC*)&dll_rb_cInteger},
|
||||||
# endif
|
# endif
|
||||||
# if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 20
|
# if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 20
|
||||||
|
@ -753,6 +753,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 */
|
||||||
|
/**/
|
||||||
|
1929,
|
||||||
/**/
|
/**/
|
||||||
1928,
|
1928,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user