fixed many-to-many
[clinton/lisp-on-lines.git] / src / presentations.lisp
index 82f18e3..77510a8 100644 (file)
@@ -1,16 +1,6 @@
-(in-package :mewa)
+(in-package :lisp-on-lines)
 
 
-
- (defun split-list (n list)  
-  (loop for cons on list
-        by #'(lambda (x) (nthcdr n x))
-        if (< 0 n)
-        collect (loop for atom in cons
-                      repeat n
-                      collect atom)
-        else return nil))
-
 (defaction edit-instance ((self mewa))
   (call-presentation (instance self) :type :editor))
 
 
 (defgeneric search-expr (criteria instance)
   (:documentation "Return ready to apply criteria.
-                   What to do with it is backend dependent."))
+                   to do with What it is backend dependent."))
 
 (defmacro def-search-expr (((self criteria-type)) (model-expr &body body))
   `(defmethod search-expr ((,self ,criteria-type) instance)