diff options
| author | John Wiegley <johnw@newartisans.com> | 2002-04-16 20:23:08 +0000 |
|---|---|---|
| committer | John Wiegley <johnw@newartisans.com> | 2002-04-16 20:23:08 +0000 |
| commit | 3164609ecf9e308530aa49740be0f03d4db9561c (patch) | |
| tree | f082689bab12d723e973fd1905d2202e208f2ace | |
| parent | d36b2e9c57fe392869c5f800b80905093dc05ff0 (diff) | |
*** no comment ***
| -rw-r--r-- | TODO | 10 | ||||
| -rw-r--r-- | chess-ics.el | 2 |
2 files changed, 10 insertions, 2 deletions
@@ -9,10 +9,20 @@ analysis/highlight tools bughouse/crazyhouse +- Make the drawing/highlighting code just touch single squares, rather + than redrawing the whole board each time (fast though this is, + touching single squares is all that's necessary, and it would be + even faster) + - Fix highlighting in chess-plain when chess-plain-spacing is set. chess-coord needs to be applied to a larger area, and also the way highlight locations are found needs to be recalculated. +- The highlighting code is broken for a different reason. I'm + thinking about changing all of the highlighting functions to USE + properties in order to find out where the highlighting region should + begin. + - Move keyboard shortcutting and mouse selection into their own modules diff --git a/chess-ics.el b/chess-ics.el index aad839d..1884799 100644 --- a/chess-ics.el +++ b/chess-ics.el @@ -264,8 +264,6 @@ who is black." (defun chess-ics-filter (string) (save-excursion (if chess-engine-last-pos - ;; ml: Can't we just use comint-last-output-start and - ;; process-mark here? instead of chess-engine-last-pos? (goto-char chess-engine-last-pos) (goto-char (point-min))) (unwind-protect |
