mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
updated for version 7.4.469
Problem: Can't build with MSVC. (Ken Takata) Solution: Move the assignment after the declarations.
This commit is contained in:
parent
9a95bdc52a
commit
4697ae00a7
@ -1382,9 +1382,6 @@ do_pending_operator(cap, old_col, gui_yank)
|
|||||||
int restart_edit_save;
|
int restart_edit_save;
|
||||||
#ifdef FEAT_LINEBREAK
|
#ifdef FEAT_LINEBREAK
|
||||||
int lbr_saved = curwin->w_p_lbr;
|
int lbr_saved = curwin->w_p_lbr;
|
||||||
|
|
||||||
curwin->w_p_lbr = FALSE; /* avoid a problem with unwanted linebreaks in
|
|
||||||
* block mode */
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* The visual area is remembered for redo */
|
/* The visual area is remembered for redo */
|
||||||
@ -1396,6 +1393,10 @@ do_pending_operator(cap, old_col, gui_yank)
|
|||||||
int include_line_break = FALSE;
|
int include_line_break = FALSE;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef FEAT_LINEBREAK
|
||||||
|
curwin->w_p_lbr = FALSE; /* Avoid a problem with unwanted linebreaks in
|
||||||
|
* block mode. */
|
||||||
|
#endif
|
||||||
#if defined(FEAT_CLIPBOARD)
|
#if defined(FEAT_CLIPBOARD)
|
||||||
/*
|
/*
|
||||||
* Yank the visual area into the GUI selection register before we operate
|
* Yank the visual area into the GUI selection register before we operate
|
||||||
|
@ -741,6 +741,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 */
|
||||||
|
/**/
|
||||||
|
469,
|
||||||
/**/
|
/**/
|
||||||
468,
|
468,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user