Revert "core: length: Check parameter."

This reverts commit 1f52ed35c66febcce16e06868e803a39be7eda41.
This commit is contained in:
Jan Nieuwenhuizen 2018-04-30 20:47:05 +02:00
parent ec85612ac4
commit 6d3fee91b9
No known key found for this signature in database
GPG key ID: F3C1A0D9C1D65273

View file

@ -520,8 +520,6 @@ length__ (SCM x) ///((internal))
SCM
length (SCM x)
{
if (x != cell_nil && TYPE (x) != TPAIR)
error (cell_symbol_not_a_pair, x);
return MAKE_NUMBER (length__ (x));
}