I keep getting a blank command line after my error messages. See following example. (defun c:test( / ) (defun myerr (s) (if (/= s "Function cancelled") (if (= s "quit / exit abort") (princ) (princ s) ) ) (if orgerr (setq *error* orgerr)) (princ) ) (setq orgerr *error* *error* myerr) (princ " an error message") (exit) ) this gives me the following in my text area so I can not see the error msg without having 3lines or hitting f2.: command:test an error message command: command:_ How can I get it to do like: command:test an error message command:_