Paul Eggert <eggert@cs.ucla.edu> schrieb am Sa., 20. Mai 2017 um 22:46 Uhr:
A couple of minor things I noticed in the recently-installed patch:

> const short minargs = function->min_arity;

In theory at least the arity might be greater than 32767, so this should be
ptrdiff_t. 

Yes, the 'short' was a leftover from a previous version that used a misc type instead of a pseudovector. Thanks for fixing.