Patch 8.1.0745
Problem: Compiler warnings for signed/unsigned string.
Solution: Remove type casts. (John Marriott)
Files: src/ex_docmd.c, src/mbyte.c
*** ../vim-8.1.0744/src/ex_docmd.c 2019-01-13 23:38:33.387773334 +0100
--- src/ex_docmd.c 2019-01-14 20:14:51.360362936 +0100
***************
*** 2290,2296 ****
/* check these explicitly for a more specific error message */
if (*ea.arg == '*' || *ea.arg == '+')
{
! errormsg = (char_u *)_(e_invalidreg);
goto doend;
}
#endif
--- 2290,2296 ----
/* check these explicitly for a more specific error message */
if (*ea.arg == '*' || *ea.arg == '+')
{
! errormsg = _(e_invalidreg);
goto doend;
}
#endif
*** ../vim-8.1.0744/src/mbyte.c 2019-01-13 23:38:33.399773248 +0100
--- src/mbyte.c 2019-01-14 20:14:19.048586175 +0100
***************
*** 560,566 ****
else if (GetLastError() == ERROR_INVALID_PARAMETER)
{
codepage_invalid:
! return (char_u *)N_("E543: Not a valid codepage");
}
}
#endif
--- 560,566 ----
else if (GetLastError() == ERROR_INVALID_PARAMETER)
{
codepage_invalid:
! return N_("E543: Not a valid codepage");
}
}
#endif
*** ../vim-8.1.0744/src/version.c 2019-01-13 23:50:56.358162250 +0100
--- src/version.c 2019-01-14 20:16:16.363775419 +0100
***************
*** 797,798 ****
--- 797,800 ----
{ /* Add new patch number below this line */
+ /**/
+ 745,
/**/
--
hundred-and-one symptoms of being an internet addict:
197. Your desk collapses under the weight of your computer peripherals.
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\ an exciting new programming language -- http://www.Zimbu.org ///
\\\ 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].
For more options, visit https://groups.google.com/d/optout.