0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

updated for version 7.0028

This commit is contained in:
Bram Moolenaar
2005-01-02 11:36:03 +00:00
parent b78b0b095e
commit ec2dad6329
4 changed files with 97 additions and 5 deletions

View File

@@ -1530,6 +1530,7 @@ op_delete(oap)
if ( oap->motion_type == MCHAR
#ifdef FEAT_VISUAL
&& !oap->is_VIsual
&& !oap->block_mode
#endif
&& oap->line_count > 1
&& oap->op_type == OP_DELETE)
@@ -2679,6 +2680,7 @@ op_yank(oap, deleting, mess)
&& !oap->inclusive
#ifdef FEAT_VISUAL
&& (!oap->is_VIsual || *p_sel == 'o')
&& !oap->block_mode
#endif
&& oap->end.col == 0
&& yanklines > 1)
@@ -5997,7 +5999,7 @@ cursor_pos_info()
if (lnum == curbuf->b_ml.ml_line_count
&& !curbuf->b_p_eol
&& curbuf->b_p_bin
&& STRLEN(s) < len)
&& (long)STRLEN(s) < len)
char_count_cursor -= eol_size;
}
}