diff options
| -rw-r--r-- | chess-transport.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/chess-transport.el b/chess-transport.el index 5d9e5b7..47fe16a 100644 --- a/chess-transport.el +++ b/chess-transport.el @@ -26,7 +26,11 @@ ((eq event 'send) ;; Transmit the string given in `(car args)' to the outbound ;; transport from here - ))) + ) + + (t + ;; Pass all other events down to chess-network + (apply 'chess-network-handler event args)))) ;; Call `(chess-engine-submit engine STRING)' for text that arrives ;; from the inbound transport |
