summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-03-03`last-command-char' is gone in Emacs24, it is `last-command-event' now.Mario Lang
2014-03-03Fix (some) Emacs24 compatibility issues.Mario Lang
2013-12-02Update .gitmodulesJohn Wiegley
2013-10-31Update submodule piecesJohn Wiegley
2013-09-16Mention `chess-default-engine' and prefix argument in `chess' docstring.Mario Lang
2013-09-05Do not interactively prompt for confirmation when opening a large PGN file.Mario Lang
2013-09-05Allow testsuite generation from "The Week In Chess" (twic).Mario Lang
"make check-twic" will download the latest twic issues as PGN, concatenate them and run test over them.
2013-09-05Load `cl' at compile time for `assert'.Mario Lang
2013-09-05The argument to @sp is not optional in Texinfo 5.1.Mario Lang
2011-09-19Added chess-ics2.el, from Dmitry "Troydm" GeurkovJohn Wiegley
2010-04-05Added run-tests.shJohn Wiegley
2010-04-05Updated TODO fileJohn Wiegley
2009-12-27char-valid-p is obsolete (as of Emacs 23.1); use characterp insteadMario Lang
2008-09-17Added a bug.John Wiegley
2008-09-17Use $(whoami), not $$, to distinguish emacs-chess tmp dirs.John Wiegley
2008-09-17Add PID into the tmpdir.Mario Lang
2008-09-17runtests now takes an argument, specifying how many CPUs are available.John Wiegley
2008-09-17Have 'make check' fail if there are any Lisp errors.John Wiegley
2008-09-17Added 'runtests', to simplify running on multi-core machines.John Wiegley
2008-09-17Fixed another problem with the error reporting code.John Wiegley
2008-09-17Added missing `error' argument.John Wiegley
2008-09-17Sorted the TODO file.John Wiegley
2008-09-17Add more delays in case text has not appeared from the command.John Wiegley
Fixes: AF51A38C-36B6-4976-954D-0BCD6C1A81FD
2008-09-16After a call to `chess-scid-get-result', clear the buffer so that we don't seeJohn Wiegley
the prompt that was output after that command when we enter this function the second time.
2008-09-10Updated TODO file.John Wiegley
2008-09-10TODO item about unconditional disabling of assert.Mario Lang
2008-09-08Added a TODO item about chess-scid-get-result failing on some machines.Mario Lang
2008-09-03Added TODO note.John Wiegley
2008-09-02Added TODO entries.John Wiegley
2008-09-02Added a code cleanup note.John Wiegley
2008-09-02Added a few bugs to the TODO file.John Wiegley
2008-09-02Removed code that was appending text to the ends of variables, rather thanJohn Wiegley
using format string specifiers.
2008-09-02Implemented a safer method for parsing algebraic moves, since for some reasonJohn Wiegley
we weren't always seeing the full move when using looking-at. The way I do it now is to require some kind of whitespace after the SAN move text.
2008-09-02Updated TODO file.John Wiegley
2008-09-02If a chess message cannot be found, let the user know which one.John Wiegley
2008-09-02Don't highlight the opening paren for special chess-* forms.John Wiegley
2008-09-02Simplified the test runner's output, so it fits in 80 columns.John Wiegley
2008-09-02A COUNT of 0 now means "read to end of database", not -1, which Emacs wasJohn Wiegley
taking to be an option flag.
2008-09-02Corrected game indices in the debug output.John Wiegley
2008-09-02'make check' is now 0-based, like the rest of the database-related code. OnlyJohn Wiegley
in the display code (the top-level user interface) are database games presented using a 1-base system.
2008-09-01Highlight `chess-error' the same way as `error'.John Wiegley
2008-09-01The 'start' parameter passed in is now a 0-based index, like what is expectedJohn Wiegley
by chess-database.el.
2008-09-01chess-scid now accepts a 0-based index, but uses a 1-based index when talkingJohn Wiegley
to ChessDB.
2008-09-01Use the modulus of the read-count to govern when game counts are reported.John Wiegley
2008-09-01Report an error if we fail to find the beginning of a game loaded fromJohn Wiegley
ChessDB, or fail to see its end. Also, give up to 10 seconds to wait for the result to come from ChessDB, polling every second to look for new output.
2008-09-01Added a note about how to run the full test suite properly.John Wiegley
2008-09-01Erase the buffer before asking scid for a PGN position. What happens duringJohn Wiegley
running of the validation tests is that he buffer fills up before we can evaluate all the games.
2008-09-01When byte-compiling chess-pos, set cl-optimize-speed to 9. This increasesJohn Wiegley
the computation of chess-eco.fen by up to 50% on my system.
2008-09-01Off by one error in string clipping of tag values.John Wiegley
2008-09-01Only require 'cl when byte-compiling chess-ai. We don't yet use the CLJohn Wiegley
compatability functions at runtime.