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 3767b61 commit 069dafcCopy full SHA for 069dafc
src/syntax.c
@@ -2470,7 +2470,8 @@ syn_current_attr(
2470
2471
/* nextgroup ends at end of line, unless "skipnl" or "skipempty" present */
2472
if (current_next_list != NULL
2473
- && syn_getcurline()[current_col + 1] == NUL
+ && (line = syn_getcurline())[current_col] != NUL
2474
+ && line[current_col + 1] == NUL
2475
&& !(current_next_flags & (HL_SKIPNL | HL_SKIPEMPTY)))
2476
current_next_list = NULL;
2477
src/version.c
@@ -778,6 +778,8 @@ static char *(features[]) =
778
779
static int included_patches[] =
780
{ /* Add new patch number below this line */
781
+/**/
782
+ 1561,
783
/**/
784
1560,
785
0 commit comments