vote up 4 vote down star
2

In elisp, there is an 'if' case where I would like to perform many different things:

(if condition
    (do-something)
    (do-something-else)
    ...)

However, (do-something-else) is executed in the else-case only. How can you specify a block of instructions to execute? For example:

(if condition
    (begin
        (do-something)
        (do-something-else)
        ...))
flag

64% accept rate

2 Answers

vote up 8 vote down check

Use progn:

(if condition
    (progn
        (do-something)
        (do-something-else)))
link|flag
vote up 7 vote down

If there's no else required, it might be more readable to use:

(when condition
    (do-something)
    (do-something-else))
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.