Hi, On Tue, Jun 7, 2022 at 7:52 PM K.Takata <[email protected]> wrote:
> *@k-takata* commented on this pull request. > ------------------------------ > > In src/dosinst.c > <https://github.com/vim/vim/pull/10538#discussion_r891868223>: > > > @@ -212,7 +212,7 @@ check_unpack(void) > > printf("ERROR: Cannot find filetype.vim in \"%s\"\n", installdir); > > printf("It looks like you did not unpack the runtime archive.\n"); > > printf("You must unpack the runtime archive \"vim%srt.zip\" before > installing.\n", > > > If line 215 is changed from VIM_VERSION_NODOT + 3 to VIM_VERSION_NODOT, > then this line should be changed as follows: > VIM_VERSION_NODOT is defined as a string. The current code is trying to add a number to the string. > ⬇️ Suggested change > > - printf("You must unpack the runtime archive \"vim%srt.zip\" before > installing.\n", > > + printf("You must unpack the runtime archive \"%srt.zip\" before > installing.\n", > > > > Updated the PR with this change. - Yegappan -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/vim_dev/CAAW7x7%3DQU%3Doe%3DYPJ4_5M%3DCc2S56i7VovE%2B9YY11feu3ZsPL9rw%40mail.gmail.com.
