Problem: Tiny issues.
Solution: Tiny improvements.
if (in_vim9script()
&& (check_for_string_arg(argvars, 0) == FAIL
- || check_for_opt_string_or_number_or_list_arg(argvars, 1) == FAIL))
+ || check_for_opt_string_or_number_or_list_arg(argvars, 1)
+ == FAIL))
return;
if (argvars[1].v_type != VAR_UNKNOWN)
skip_showmode()
{
// Call char_avail() only when we are going to show something, because it
- // takes a bit of time. redrawing() may also call char_avail_avail().
+ // takes a bit of time. redrawing() may also call char_avail().
if (global_busy
|| msg_silent != 0
|| !redrawing()
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 5170,
/**/
5169,
/**/
/*
* defines to avoid typecasts from (char_u *) to (char *) and back
- * (vim_strchr() and vim_strrchr() are now in alloc.c)
+ * (vim_strchr() and vim_strrchr() are now in strings.c)
*/
#define STRLEN(s) strlen((char *)(s))
#define STRCPY(d, s) strcpy((char *)(d), (char *)(s))