Add delq list arg check
* src/fns.c (Fdelq): Check that list is a proper list. This is more compatible with what ‘delete’ does.
This commit is contained in:
parent
499780daef
commit
1056be0b3c
1 changed files with 1 additions and 0 deletions
|
@ -1589,6 +1589,7 @@ argument. */)
|
|||
else
|
||||
prev = tail;
|
||||
}
|
||||
CHECK_LIST_END (tail, list);
|
||||
return list;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue