Skip to content

Commit 9063021

Browse files
committed
Merge remote-tracking branch 'vim/master'
2 parents e9d67fa + 32d03b3 commit 9063021

4 files changed

Lines changed: 11 additions & 7 deletions

File tree

src/auto/configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4194,7 +4194,7 @@ if test "${with_developer_dir+set}" = set; then :
41944194
withval=$with_developer_dir; DEVELOPER_DIR="$withval"; { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DEVELOPER_DIR" >&5
41954195
$as_echo "$DEVELOPER_DIR" >&6; }
41964196
else
4197-
DEVELOPER_DIR=""; { $as_echo "$as_me:${as_lineno-$LINENO}: result: not present" >&5
4197+
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: not present" >&5
41984198
$as_echo "not present" >&6; }
41994199
fi
42004200

src/configure.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ if test "`(uname) 2>/dev/null`" = Darwin; then
148148
AC_MSG_CHECKING(--with-developer-dir argument)
149149
AC_ARG_WITH(developer-dir, [ --with-developer-dir=PATH use PATH as location for Xcode developer tools],
150150
DEVELOPER_DIR="$withval"; AC_MSG_RESULT($DEVELOPER_DIR),
151-
DEVELOPER_DIR=""; AC_MSG_RESULT(not present))
151+
AC_MSG_RESULT(not present))
152152

153153
if test "x$DEVELOPER_DIR" = "x"; then
154154
AC_PATH_PROG(XCODE_SELECT, xcode-select)

src/version.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -756,6 +756,10 @@ static char *(features[]) =
756756

757757
static int included_patches[] =
758758
{ /* Add new patch number below this line */
759+
/**/
760+
924,
761+
/**/
762+
923,
759763
/**/
760764
922,
761765
/**/

src/window.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5585,7 +5585,7 @@ win_setminheight()
55855585
}
55865586
}
55875587

5588-
#ifdef FEAT_MOUSE
5588+
#if defined(FEAT_MOUSE) || defined(PROTO)
55895589

55905590
/*
55915591
* Status line of dragwin is dragged "offset" lines down (negative is up).
@@ -5718,7 +5718,7 @@ win_drag_status_line(dragwin, offset)
57185718
showmode();
57195719
}
57205720

5721-
#ifdef FEAT_VERTSPLIT
5721+
# if defined(FEAT_VERTSPLIT) || defined(PROTO)
57225722
/*
57235723
* Separator line of dragwin is dragged "offset" lines right (negative is left).
57245724
*/
@@ -5821,7 +5821,7 @@ win_drag_vsep_line(dragwin, offset)
58215821
(void)win_comp_pos();
58225822
redraw_all_later(NOT_VALID);
58235823
}
5824-
#endif /* FEAT_VERTSPLIT */
5824+
# endif /* FEAT_VERTSPLIT */
58255825
#endif /* FEAT_MOUSE */
58265826

58275827
#endif /* FEAT_WINDOWS */
@@ -7278,7 +7278,7 @@ get_tab_number(tabpage_T *tp UNUSED)
72787278
}
72797279
#endif
72807280

7281-
#ifdef FEAT_WINDOWS
7281+
#if defined(FEAT_WINDOWS) || defined(PROTO)
72827282
/*
72837283
* Return TRUE if "topfrp" and its children are at the right height.
72847284
*/
@@ -7301,7 +7301,7 @@ frame_check_height(topfrp, height)
73017301
}
73027302
#endif
73037303

7304-
#ifdef FEAT_VERTSPLIT
7304+
#if defined(FEAT_VERTSPLIT) || defined(PROTO)
73057305
/*
73067306
* Return TRUE if "topfrp" and its children are at the right width.
73077307
*/

0 commit comments

Comments
 (0)