Christopher Roy Bratusek <[email protected]> writes: >> Maybe that's because you need to use `(position . ,pos) ? > > I've already tried ,pos and ',pos none of both are working. > > ... bad argument: #<subr move-window-to>, backquote-unquote, 2 > > `( position instead of '( position (as you did) also doesn't really help
You tried both of these together -- the backtick to quote and the comma to except pos? How about: (cons 'position pos) Or does that generate the same error? How about, from sawfish-client: (setq pos 'south-east) `(position . ,pos) What's the second of those give? Should be: (position . south-east) -- Jeremy Hankins <[email protected]>
