How can you write multiple statements in elisp ‘if’ statement? February 8, 2023 by Tarik Use progn: (if condition (progn (do-something) (do-another-thing))) See sequencing in the manual.