Changeset 110
- Timestamp:
- 03/15/07 21:41:55 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified cl-darcs/trunk/repo.lisp ΒΆ
r35 r110 160 160 (let ((ours-list (apply #'append (reverse ours))) 161 161 (theirs-list (apply #'append (reverse theirs)))) 162 (values ( union ours-list theirs-list :test #'equalp)162 (values (intersection ours-list theirs-list :test #'equalp) 163 163 (set-difference ours-list theirs-list :test #'equalp) 164 164 (set-difference theirs-list ours-list :test #'equalp))))
Note: See TracChangeset
for help on using the changeset viewer.