Function: MKLIST

Documentation

if not already a list, mklist will return a new list with its param as element

Source

(defun mklist (obj)
  "if not already a list, mklist will return a 
   new list with its param as element"
  (if (listp obj)
      obj
      (list obj)))
Source Context