forked from aniani/vim
patch 8.0.0003
Problem: getwinvar() returns wrong Value of boolean and number options,
especially non big endian systems. (James McCoy)
Solution: Cast the pointer to long or int. (closes #1060)
This commit is contained in:
@@ -12363,8 +12363,10 @@ get_winbuf_options(int bufopt)
|
||||
{
|
||||
if (opt->flags & P_STRING)
|
||||
dict_add_nr_str(d, opt->fullname, 0L, *(char_u **)varp);
|
||||
else if (opt->flags & P_NUM)
|
||||
dict_add_nr_str(d, opt->fullname, *(long *)varp, NULL);
|
||||
else
|
||||
dict_add_nr_str(d, opt->fullname, *varp, NULL);
|
||||
dict_add_nr_str(d, opt->fullname, *(int *)varp, NULL);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user