changed plist-nunion to get rid of a LENGTH call
[clinton/lisp-on-lines.git] / src / mewa.lisp
index 19160fa..a0300f6 100644 (file)
@@ -15,7 +15,7 @@
 
 (defun plist-nunion (new-props plist)
   (loop for cons on new-props
-       for i from 1 to (length new-props)
+       for i from 1
        when (oddp i)
        do (setf (getf plist (first cons)) (second cons))
        finally (return plist)))