I have a lisp routine that highlights objects (called find_data). I want to set an icon for this. What is the most effecient way to load this lisp from a lisp? I will select previous for another function after running the above lisp so will I need to store the results? Below is what I have so far: (DEFUN C:zc() ; RUN LISP routine "C:find_SYMDATA" and store the result in RSLT. (setq RSLT (C:SYMDATA)) (command "copy" "p") Thanks for the help. D