Skip to content

Commit 8be81c4

Browse files
committed
Merge remote-tracking branch 'vim/master'
2 parents acc11d1 + 6abda99 commit 8be81c4

File tree

5 files changed

+16
-2
lines changed

5 files changed

+16
-2
lines changed

src/ex_getln.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,8 @@ getcmdline(
212212
#endif
213213
expand_T xpc;
214214
long *b_im_ptr = NULL;
215-
#if defined(FEAT_WILDMENU) || defined(FEAT_EVAL) || defined(FEAT_SEARCH_EXTRA)
215+
#if defined(FEAT_WILDMENU) || defined(FEAT_EVAL) \
216+
|| defined(FEAT_SEARCH_EXTRA) || defined(FEAT_CMDWIN)
216217
/* Everything that may work recursively should save and restore the
217218
* current command line in save_ccline. That includes update_screen(), a
218219
* custom status line may invoke ":normal". */

src/gui_gtk.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,9 @@
5151
# ifdef _
5252
# undef _
5353
# endif
54+
# ifdef ngettext
55+
# undef ngettext
56+
# endif
5457
# ifdef N_
5558
# undef N_
5659
# endif

src/gui_gtk_x11.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@
3535
# ifdef _
3636
# undef _
3737
# endif
38+
# ifdef ngettext
39+
# undef ngettext
40+
# endif
3841
# ifdef N_
3942
# undef N_
4043
# endif

src/if_ruby.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -523,9 +523,10 @@ static struct
523523
{
524524
{"rb_assoc_new", (RUBY_PROC*)&dll_rb_assoc_new},
525525
{"rb_cFalseClass", (RUBY_PROC*)&dll_rb_cFalseClass},
526-
{"rb_cFixnum", (RUBY_PROC*)&dll_rb_cFixnum},
527526
# if defined(USE_RUBY_INTEGER)
528527
{"rb_cInteger", (RUBY_PROC*)&dll_rb_cInteger},
528+
# else
529+
{"rb_cFixnum", (RUBY_PROC*)&dll_rb_cFixnum},
529530
# endif
530531
# if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 20
531532
{"rb_cFloat", (RUBY_PROC*)&dll_rb_cFloat},

src/version.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -779,6 +779,12 @@ static char *(features[]) =
779779

780780
static int included_patches[] =
781781
{ /* Add new patch number below this line */
782+
/**/
783+
163,
784+
/**/
785+
162,
786+
/**/
787+
161,
782788
/**/
783789
160,
784790
/**/

0 commit comments

Comments
 (0)