I have a variable defined in my lisp. I would like to write a condittion where if the UCS exists, restore it, if it don't exist I want to load a DCL saying that it don't exist and escape the rest of the lisp. Here's what I got so far. (if (= <whatever> UCS1)(command "UCS" "R" UCS1)(load_dialog "UCS.dcl")) any comments?