Patch 8.2.4637
Problem: Warning for using uninitialized variable. (Tony Mechelynck)
Solution: Initialize it.
Files: src/ex_docmd.c
*** ../vim-8.2.4636/src/ex_docmd.c 2022-03-27 16:56:17.340852629 +0100
--- src/ex_docmd.c 2022-03-27 18:05:38.435059153 +0100
***************
*** 2782,2788 ****
cmdmod_T *cmod,
int skip_only)
{
! char_u *cmd_start;
char_u *p;
int starts_with_colon = FALSE;
int vim9script = in_vim9script();
--- 2782,2788 ----
cmdmod_T *cmod,
int skip_only)
{
! char_u *cmd_start = NULL;
char_u *p;
int starts_with_colon = FALSE;
int vim9script = in_vim9script();
*** ../vim-8.2.4636/src/version.c 2022-03-27 16:56:17.340852629 +0100
--- src/version.c 2022-03-27 18:10:51.458541735 +0100
***************
*** 752,753 ****
--- 752,755 ----
{ /* Add new patch number below this line */
+ /**/
+ 4637,
/**/
--
"Hegel was right when he said that we learn from history that man can
never learn anything from history." (George Bernard Shaw)
/// 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/20220327171152.CC6FF1C0C1F%40moolenaar.net.