Changeset 110


Ignore:
Timestamp:
03/15/07 21:41:55 (18 years ago)
Author:
Magnus Henoch
Message:

Fix thinko in get-common-and-uncommon

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified cl-darcs/trunk/repo.lisp ΒΆ

    r35 r110  
    160160  (let ((ours-list (apply #'append (reverse ours)))
    161161        (theirs-list (apply #'append (reverse theirs))))
    162     (values (union ours-list theirs-list :test #'equalp)
     162    (values (intersection ours-list theirs-list :test #'equalp)
    163163            (set-difference ours-list theirs-list :test #'equalp)
    164164            (set-difference theirs-list ours-list :test #'equalp))))
Note: See TracChangeset for help on using the changeset viewer.