If I use the boundary command twice in the same space using 2 different points to create 2 lwpolylines, is there a way to compare the 2 entities to see if they are the same? I have tried using (entget) on each entity and stripping away the first 4 elements of each data list to eliminate the name and handle. Even though they appear identical if I do a (mapcar 'equal data1 data2) I get a result similar to (T T T T T T T T T T nil T T T T T T T T T T T T T T T T T T T T). Each time it is different but the nil(s) always occurs at a DXF code 10 - a vertex point. How can I compare 2 lwpolylines to see if they are identical except for their name and handle?