I am trying to set up a conditional statement in a Gimp Script-Fu script, and nothing appears to be executing.
(gimp-message "before cond")
(cond
[#t (gimp-message "I should see this")]
[else (gimp-message "I shouldn't see this")]
)
(gimp-message "after cond")
The output I'm getting is the following
script-fu.exe-Warning: before cond
script-fu.exe-Warning: after cond
What am I doing wrong here? Why are none of my gimp-messages showing up in the cond
statement?