diff options
| -rw-r--r-- | chess-engine.el | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/chess-engine.el b/chess-engine.el index f3c8527..f3c2f30 100644 --- a/chess-engine.el +++ b/chess-engine.el @@ -367,10 +367,7 @@ (let ((proc chess-engine-process)) (if proc (if (memq (process-status proc) '(run open)) - (progn - (goto-char (point-max)) - (insert-before-markers string) - (process-send-string proc string)) + (process-send-string proc string) (chess-message 'engine-not-running) (chess-engine-command nil 'destroy)) (chess-engine-command nil 'send string))))) |
