summaryrefslogtreecommitdiffstats
path: root/src/clientserver.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-02-07 13:56:44 +0000
committerBram Moolenaar <Bram@vim.org>2022-02-07 13:56:44 +0000
commit54969f4ef5825205ecde09ea80f4087fc3b68e5d (patch)
treea33efdb636d52d421266829a530a15e8f3cedb16 /src/clientserver.c
parent63ff72aab91679725077eab5c5405267792268bd (diff)
patch 8.2.4318: various comment and indent mistakes, returning wrong zerov8.2.4318
Problem: Various comment and indent mistakes, returning wrong zero. Solution: Fix the mistakes. Return NULL instead of FAIL.
Diffstat (limited to 'src/clientserver.c')
-rw-r--r--src/clientserver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/clientserver.c b/src/clientserver.c
index 793570abd8..caa6fdc668 100644
--- a/src/clientserver.c
+++ b/src/clientserver.c
@@ -651,7 +651,7 @@ build_drop_cmd(
ga_concat(&ga, (char_u *)":");
if (inicmd != NULL)
{
- // Can't use <CR> after "inicmd", because an "startinsert" would cause
+ // Can't use <CR> after "inicmd", because a "startinsert" would cause
// the following commands to be inserted as text. Use a "|",
// hopefully "inicmd" does allow this...
ga_concat(&ga, inicmd);