We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 470a141 commit 98b3730Copy full SHA for 98b3730
src/textprop.c
@@ -2289,7 +2289,7 @@ adjust_props_for_split(
2289
2290
*p = prop;
2291
++prevprop.ga_len;
2292
- if (p->tp_col + p->tp_len >= kept)
+ if (p->tp_col != MAXCOL && p->tp_col + p->tp_len >= kept)
2293
p->tp_len = kept - p->tp_col;
2294
if (cont_next)
2295
p->tp_flags |= TP_FLAG_CONT_NEXT;
src/version.c
@@ -703,6 +703,8 @@ static char *(features[]) =
703
704
static int included_patches[] =
705
{ /* Add new patch number below this line */
706
+/**/
707
+ 462,
708
/**/
709
461,
710
0 commit comments