diff options
| author | Paul Eggert | 2017-01-28 16:45:56 -0800 |
|---|---|---|
| committer | Paul Eggert | 2017-01-30 13:33:01 -0800 |
| commit | 1056be0b3c6f7f6732bd6f31f78d3a7e1a41f2c2 (patch) | |
| tree | ff261653118c8bb70196ae7ff70490e1ef8d56f9 /src | |
| parent | 499780daef5b9c5d426923ac325b111d3b14267f (diff) | |
| download | emacs-1056be0b3c6f7f6732bd6f31f78d3a7e1a41f2c2.tar.gz emacs-1056be0b3c6f7f6732bd6f31f78d3a7e1a41f2c2.zip | |
Add delq list arg check
* src/fns.c (Fdelq): Check that list is a proper list.
This is more compatible with what ‘delete’ does.
Diffstat (limited to 'src')
| -rw-r--r-- | src/fns.c | 1 |
1 files changed, 1 insertions, 0 deletions
| @@ -1589,6 +1589,7 @@ argument. */) | |||
| 1589 | else | 1589 | else |
| 1590 | prev = tail; | 1590 | prev = tail; |
| 1591 | } | 1591 | } |
| 1592 | CHECK_LIST_END (tail, list); | ||
| 1592 | return list; | 1593 | return list; |
| 1593 | } | 1594 | } |
| 1594 | 1595 | ||