Anton Nazarov

Results 2 issues of Anton Nazarov

last-command-char and several other depreciated variables were removed from emacs 24.3. So keyboard input does not work in recent versions of Emacs. Workaround: (defadvice chess-input-shortcut (around last-command-char-fixup activate) (let ((last-command-char...

Due to change in process handling code on lines 309-310 of chess-engine.el ``` elisp (unless (process-filter proc) (set-process-filter proc 'chess-engine-filter))) ``` does not set up process output filter 'chess-engine-filter. This...