mirror of
https://github.com/vim/vim.git
synced 2025-10-03 05:14:07 -04:00
updated for version 7.2-064
This commit is contained in:
@@ -2209,12 +2209,15 @@ op_tilde(oap)
|
|||||||
{
|
{
|
||||||
for (; pos.lnum <= oap->end.lnum; ++pos.lnum)
|
for (; pos.lnum <= oap->end.lnum; ++pos.lnum)
|
||||||
{
|
{
|
||||||
|
int one_change;
|
||||||
|
|
||||||
block_prep(oap, &bd, pos.lnum, FALSE);
|
block_prep(oap, &bd, pos.lnum, FALSE);
|
||||||
pos.col = bd.textcol;
|
pos.col = bd.textcol;
|
||||||
did_change = swapchars(oap->op_type, &pos, bd.textlen);
|
one_change = swapchars(oap->op_type, &pos, bd.textlen);
|
||||||
|
did_change |= one_change;
|
||||||
|
|
||||||
# ifdef FEAT_NETBEANS_INTG
|
# ifdef FEAT_NETBEANS_INTG
|
||||||
if (usingNetbeans && did_change)
|
if (usingNetbeans && one_change)
|
||||||
{
|
{
|
||||||
char_u *ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
|
char_u *ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
|
||||||
|
|
||||||
|
@@ -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 */
|
||||||
|
/**/
|
||||||
|
64,
|
||||||
/**/
|
/**/
|
||||||
63,
|
63,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user