I know little elisp, and I'm trying to figure out how to call a function that takes a property list as one of its arguments. The particular function is rudel-join-session
from the Rudel package; I'm trying to set it up so Rudel will automatically join a session when Emacs starts. I'm not sure how property lists work, so I tried doing this:
(rudel-join-session (list :backend 'obby
:host "foo"
:port 6522
:username "username"
:color "blue"
:global-password ""
:user-password ""
))
I'm getting the error:
Wrong type argument: listp, obby
I assume it's from using property lists wrong. Any idea what the correct syntax is?