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 1747abb commit 2f39b20Copy full SHA for 2f39b20
src/ex_docmd.c
@@ -4840,12 +4840,10 @@ getargopt(eap)
4840
#ifdef FEAT_MBYTE
4841
else if (STRNCMP(arg, "enc", 3) == 0)
4842
{
4843
- arg += 3;
4844
- pp = &eap->force_enc;
4845
- }
4846
- else if (STRNCMP(arg, "encoding", 8) == 0)
4847
- {
4848
- arg += 8;
+ if (STRNCMP(arg, "encoding", 8) == 0)
+ arg += 8;
+ else
+ arg += 3;
4849
pp = &eap->force_enc;
4850
}
4851
else if (STRNCMP(arg, "bad", 3) == 0)
src/version.c
@@ -714,6 +714,8 @@ static char *(features[]) =
714
715
static int included_patches[] =
716
{ /* Add new patch number below this line */
717
+/**/
718
+ 374,
719
/**/
720
373,
721
0 commit comments