comparison src/clientserver.c @ 27583:d4921b91542c v8.2.4318

patch 8.2.4318: various comment and indent mistakes, returning wrong zero Commit: https://github.com/vim/vim/commit/54969f4ef5825205ecde09ea80f4087fc3b68e5d Author: Bram Moolenaar <Bram@vim.org> Date: Mon Feb 7 13:56:44 2022 +0000 patch 8.2.4318: various comment and indent mistakes, returning wrong zero Problem: Various comment and indent mistakes, returning wrong zero. Solution: Fix the mistakes. Return NULL instead of FAIL.
author Bram Moolenaar <Bram@vim.org>
date Mon, 07 Feb 2022 15:00:05 +0100
parents 41e0dcf38521
children 6e431b1c51d5
comparison
equal deleted inserted replaced
27582:de6c8e93b47f 27583:d4921b91542c
649 if (sendReply) 649 if (sendReply)
650 ga_concat(&ga, (char_u *)":call SetupRemoteReplies()<CR>"); 650 ga_concat(&ga, (char_u *)":call SetupRemoteReplies()<CR>");
651 ga_concat(&ga, (char_u *)":"); 651 ga_concat(&ga, (char_u *)":");
652 if (inicmd != NULL) 652 if (inicmd != NULL)
653 { 653 {
654 // Can't use <CR> after "inicmd", because an "startinsert" would cause 654 // Can't use <CR> after "inicmd", because a "startinsert" would cause
655 // the following commands to be inserted as text. Use a "|", 655 // the following commands to be inserted as text. Use a "|",
656 // hopefully "inicmd" does allow this... 656 // hopefully "inicmd" does allow this...
657 ga_concat(&ga, inicmd); 657 ga_concat(&ga, inicmd);
658 ga_concat(&ga, (char_u *)"|"); 658 ga_concat(&ga, (char_u *)"|");
659 } 659 }