mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
patch 9.0.1390: FOR_ALL_ macros are defined in an unexpected file
Problem: FOR_ALL_ macros are defined in an unexpected file. Solution: Move FOR_ALL_ macros to macros.h. Add FOR_ALL_HASHTAB_ITEMS. (Yegappan Lakshmanan, closes #12109)
This commit is contained in:
committed by
Bram Moolenaar
parent
663ee88a82
commit
14113fdf9c
@@ -1672,7 +1672,7 @@ do_source_ext(
|
||||
// is encountered without the "noclear" argument.
|
||||
ht = &SCRIPT_VARS(sid);
|
||||
todo = (int)ht->ht_used;
|
||||
for (hi = ht->ht_array; todo > 0; ++hi)
|
||||
FOR_ALL_HASHTAB_ITEMS(ht, hi, todo)
|
||||
if (!HASHITEM_EMPTY(hi))
|
||||
{
|
||||
--todo;
|
||||
@@ -2063,7 +2063,7 @@ get_script_local_funcs(scid_T sid)
|
||||
// looking for functions with script ID 'sid'.
|
||||
functbl = func_tbl_get();
|
||||
todo = functbl->ht_used;
|
||||
for (hi = functbl->ht_array; todo > 0; ++hi)
|
||||
FOR_ALL_HASHTAB_ITEMS(functbl, hi, todo)
|
||||
{
|
||||
ufunc_T *fp;
|
||||
|
||||
|
Reference in New Issue
Block a user