I am having a difficult time trying to understand the default option in a lisp. I have written a lisp that prompts the user for a block, or text. I would like the default to be text. I did not write a cond, just did it the easy way. Do I specify the default with (defun deflt)??? here is the lower portion of the code: (initget "27 29 30 Dt") (if (setq ANS (getkword " 27/29/30/Dt>: ")) (if (= ANS "27") (command "._Insert" "M:/-ACAD/DFCM_SYM/N27" "r" "0" "_s" (getvar "UserR1")) (if (= ANS "29") (command "._Insert" "M:/-ACAD/DFCM_SYM/N29" "r" "0" "_s" (getvar "UserR1")) (if (= ANS "30") (command "._Insert" "M:/-ACAD/DFCM_SYM/N30" "r" "0" "_s" (getvar "UserR1")) (if (= ANS "Dt") (command "dtext" "r" "0" "") (Princ) ) ) ) ) ) ) Can someone explain?? please?