Skip to content

Commit d763311

Browse files
committed
patch 9.0.0410: struct member cts_lnum is unused
Problem: Struct member cts_lnum is unused. Solution: Delete it.
1 parent 7c7e1e9 commit d763311

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

src/charset.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -950,7 +950,6 @@ init_chartabsize_arg(
950950
{
951951
CLEAR_POINTER(cts);
952952
cts->cts_win = wp;
953-
cts->cts_lnum = lnum;
954953
cts->cts_vcol = col;
955954
cts->cts_line = line;
956955
cts->cts_ptr = ptr;

src/structs.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4599,7 +4599,6 @@ typedef struct {
45994599
// Argument for lbr_chartabsize().
46004600
typedef struct {
46014601
win_T *cts_win;
4602-
linenr_T cts_lnum; // zero when not using text properties
46034602
char_u *cts_line; // start of the line
46044603
char_u *cts_ptr; // current position in line
46054604
#ifdef FEAT_PROP_POPUP

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -703,6 +703,8 @@ static char *(features[]) =
703703

704704
static int included_patches[] =
705705
{ /* Add new patch number below this line */
706+
/**/
707+
410,
706708
/**/
707709
409,
708710
/**/

0 commit comments

Comments
 (0)