Currently I have been setting up functions in a file as follows
;begin file (defun common_function () (..............) )
(defun c:Option1 () (xxxxxxx) (common_function) )
(defun c:Option2 () (yyyyyyy) (common_function) ) ; end file
The problem I have run into is that if (common_function) is somehow defined as something else later it causes mayhem. Outside of making the function local to both c: functions, is there a better way of doing this to address this scenario. Thanks Cliff