* src/emacs-module.c (value_storage_contains_p): Fix typo.

This commit is contained in:
Paul Eggert 2019-04-19 14:41:37 -07:00
parent 992fd76ce9
commit 1a4df31ddd

View file

@ -1207,7 +1207,7 @@ value_storage_contains_p (const struct emacs_value_storage *storage,
{
if (&frame->objects[i] == value)
return true;
++count;
++*count;
}
}
return false;