関数の途中で処理をstopさせたいのですが。
C言語のreturnのように、途中で処理を戻す方法はありますか?

(defun test-func ()
<中略>
(if flag
(message ”stop”)
(message ”continue”))
<中略>
)