;; | ----------------------------------------------------------------------------- ;; | SS_NotCond ;; | ----------------------------------------------------------------------------- ;; | Function : Applies the NOT condition on a set of individual conditions ;; | Arguments: ;; | 'Condition' - A single condition that should be applied ;; | Return : The NOT condition list that can be used by the ssget function. ;; | Updated : December 2, 1999 ;; | e-mail : rakesh.rao@4d-technologies.com ;; | Web : www.4d-technologies.com ;; | ----------------------------------------------------------------------------- (defun SS_NotCond ( Condition / Lst ) (list (cons -4 "")) )