Raymond Toy pushed to branch issue-240-set-diff-with-hash-table at cmucl / cmucl
Commits: 653dc42f by Raymond Toy at 2023-06-19T13:19:51-07:00 Forgot to return the value
When list1 was in the hashtable, we forgot to return values from the hashtable after computing the return value.
- - - - -
1 changed file:
- src/code/list.lisp
Changes:
===================================== src/code/list.lisp ===================================== @@ -883,7 +883,8 @@ (maphash #'(lambda (key value) (declare (ignore key)) (setq result (nconc result value))) - hashtable)))))) + hashtable) + result)))))
(defun nset-difference (list1 list2 &key key
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/653dc42ff6285a475709fe25...