In elisp, there is an \'if\' case where I would like to perform many different things:
(if condition (do-something) (do-something-else) ...) <
(if condition (do-something) (do-something-else) ...)
Use progn:
progn
(if condition (progn (do-something) (do-something-else)))