I discovered that the referential integrity of PRContext <-> PRCommand
gets broken when you assign a user to the context because #user: does a
copy, but the instance of PRCommand's context is still the pre-copy one.
This is fixed by
--
PRContext-postCopy
self setCommand: command copy.
--
cheers
Keith