Sorry, wrong code for printing the value... (If forgot that x is the
symbol),
(write standard-output (format nil "value is: %s" (position x options)))
returns (), even though flip-viewport is part of options.
Now with:
(write standard-output (format nil "value is: %s\n" (position x
options)))
(write standard-output (format nil "list is: %s\n" options))
value is: ()
list is: (none/hot-spot viewport-drag flip-workspace flip-viewport
tile-windows)
Now I've seen the problem:
(a b c) Vs '(a b c)
Chris