summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2024-09-05 17:26:30 +0200
committerChristian Brabandt <cb@256bit.org>2024-09-05 17:26:30 +0200
commitf7b8609446f171a6a287f61564e39a8dac5ff47d (patch)
tree1c3dcc66bc4a0a11f11c74529f472cbfb067e031
parent233252fdf24e1c654da86220fad1b4c63c79a92d (diff)
patch 9.1.0717: Unnecessary nextcmd NULL checks in parse_command_modifiers()v9.1.0717
Problem: Unnecessary nextcmd NULL checks in parse_command_modifiers(). Solution: Remove them (zeertzjq) Every place parse_command_modifiers() is called, nextcmd is NULL, and after it's set to non-NULL the function returns very soon. Even if one day nextcmd may be non-NULL, the NULL checks may still be wrong as the correct behavior may be overriding nextcmd. closes: #15620 Signed-off-by: zeertzjq <zeertzjq@outlook.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
-rw-r--r--src/ex_docmd.c11
-rw-r--r--src/version.c2
2 files changed, 6 insertions, 7 deletions
diff --git a/src/ex_docmd.c b/src/ex_docmd.c
index 0e69d5c384..a24b4efbce 100644
--- a/src/ex_docmd.c
+++ b/src/ex_docmd.c
@@ -2898,12 +2898,9 @@ parse_command_modifiers(
if (comment_start(eap->cmd, starts_with_colon))
{
// a comment ends at a NL
- if (eap->nextcmd == NULL)
- {
- eap->nextcmd = vim_strchr(eap->cmd, '\n');
- if (eap->nextcmd != NULL)
- ++eap->nextcmd;
- }
+ eap->nextcmd = vim_strchr(eap->cmd, '\n');
+ if (eap->nextcmd != NULL)
+ ++eap->nextcmd;
if (vim9script)
{
if (has_cmdmod(cmod, FALSE))
@@ -2916,7 +2913,7 @@ parse_command_modifiers(
}
return FAIL;
}
- if (eap->nextcmd == NULL && *eap->cmd == '\n')
+ if (*eap->cmd == '\n')
{
eap->nextcmd = eap->cmd + 1;
return FAIL;
diff --git a/src/version.c b/src/version.c
index 80da0e30a1..145e083bf7 100644
--- a/src/version.c
+++ b/src/version.c
@@ -705,6 +705,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 717,
+/**/
716,
/**/
715,