Patch 8.2.4097
Problem: Wrong number in error message on 32 bit system. (John Paul Adrian
Glaubitz)
Solution: Add type cast. (closes #9527)
Files: src/vim9compile.c
*** ../vim-8.2.4096/src/vim9compile.c 2022-01-13 21:15:17.237958552 +0000
--- src/vim9compile.c 2022-01-15 14:09:23.422377577 +0000
***************
*** 2008,2014 ****
: isn->isn_arg.number != needed_list_len)
{
semsg(_(e_expected_nr_items_but_got_nr),
! needed_list_len, isn->isn_arg.number);
goto theend;
}
}
--- 2008,2014 ----
: isn->isn_arg.number != needed_list_len)
{
semsg(_(e_expected_nr_items_but_got_nr),
! needed_list_len, (int)isn->isn_arg.number);
goto theend;
}
}
*** ../vim-8.2.4096/src/version.c 2022-01-15 13:37:09.666956582 +0000
--- src/version.c 2022-01-15 14:12:17.930318669 +0000
***************
*** 752,753 ****
--- 752,755 ----
{ /* Add new patch number below this line */
+ /**/
+ 4097,
/**/
--
[clop clop]
GUARD #1: Halt! Who goes there?
ARTHUR: It is I, Arthur, son of Uther Pendragon, from the castle of
Camelot. King of the Britons, defeator of the Saxons, sovereign of
all England!
GUARD #1: Pull the other one!
The Quest for the Holy Grail (Monty Python)
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// \\\
\\\ sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
--
--
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/20220115141711.A1DA31C03C8%40moolenaar.net.