For the next draft, I plan to add a new condition type, representing the Scheme equivalent of Java's concurrent modification exception:(define-condition-type &concurrent-modification &violation make-concurrent-modification-violation concurrent-modification-violation?)This violation can then be raised by code that detects concurrent modification
of non-thread data structures.Any comments?