Browse Source

Modified to use dolist instead of loop

Samuel W. Flint 9 năm trước cách đây
mục cha
commit
a083d4e1aa
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      manipulation.org

+ 2 - 2
manipulation.org

@@ -542,8 +542,8 @@ The storage of classifications is simple, they are stored as an alist in the for
         (classification-case expression
                              (variable (merge-variables expression))
                              (non-atomic (map 'list #'(lambda (expr)
-                                                        (loop for var in (collect-variables expr)
-                                                              do (merge-variables var)))
+                                                        (dolist (variable (collect-variables expr))
+                                                          (merge-variables variable)))
                                               (rest expression)))))
       (reverse variables)))
 #+END_SRC