Raymond Toy pushed to branch issue-240-set-diff-with-hash-table at cmucl / cmucl
Commits: c3aa0678 by Raymond Toy at 2023-07-27T07:31:17-07:00 Fix typo.
- - - - -
1 changed file:
- src/code/list.lisp
Changes:
===================================== src/code/list.lisp ===================================== @@ -855,7 +855,7 @@ (cond (hashtable ;; list2 was placed in hash table. (let ((res nil)) - (doli st (item list1) + (dolist (item list1) (unless (nth-value 1 (gethash (apply-key key item) hashtable)) (push item res))) res))
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/c3aa0678c04d5197ed783763...