summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--chess-auto.el8
-rw-r--r--chess-ply.el2
-rw-r--r--chess-standard.el1
-rw-r--r--chess.texi7
4 files changed, 13 insertions, 5 deletions
diff --git a/chess-auto.el b/chess-auto.el
index 24c40f1..39c3322 100644
--- a/chess-auto.el
+++ b/chess-auto.el
@@ -8,3 +8,11 @@
(batch-update-autoloads))
;;; Generated autoloads follow (made by autoload.el).
+
+;;;### (autoloads (chess) "chess" "chess.el" (15535 63810))
+;;; Generated autoloads from chess.el
+
+(autoload (quote chess) "chess" "\
+Start a game of chess." t nil)
+
+;;;***
diff --git a/chess-ply.el b/chess-ply.el
index e4f3120..c49dba4 100644
--- a/chess-ply.el
+++ b/chess-ply.el
@@ -68,7 +68,7 @@
(chess-ply-changes ply)))
(defsubst chess-ply-create (position &rest changes)
- ;; jww (2002-04-02): if changes is a castling maneuver, then
+ ;; jww (2002-04-02): if `changes' is a castling maneuver, then
;; annotate and extend the ply correctly
(cons (chess-pos-copy position) changes))
diff --git a/chess-standard.el b/chess-standard.el
index 17b2f50..b4b0267 100644
--- a/chess-standard.el
+++ b/chess-standard.el
@@ -69,7 +69,6 @@ case of the PIECE determines color.
The return value is a list of candidates, which means a list of
indices which indicate where a piece may have moved from."
- ;; jww (2002-04-07): This function is a bit slow
(let* ((color (if (char-valid-p piece)
(< piece ?a)
piece))
diff --git a/chess.texi b/chess.texi
index 752a24f..359ef5a 100644
--- a/chess.texi
+++ b/chess.texi
@@ -91,12 +91,13 @@ an example of how to make use of the library.
@menu
* The Chess.el library::
+* Displays::
* Play sessions::
* Display modules::
* Ply sources::
@end menu
-@node The Chess.el library, Play sessions, Top, Top
+@node The Chess.el library, Displays, Top, Top
@chapter The Chess.el library
@cindex library
@@ -416,7 +417,7 @@ with a chess database engine for the purpose of storing and retrieving
games from the library, or performing library-wide analyses and
searches.
-@node
+@node Displays, Play sessions, The Chess.el library, Top
@chapter Displays
The previous chapter described all the objects found in
@@ -506,7 +507,7 @@ moves.
@defun chess-display-highlight display index &optional mode
@end defun
-@node Play sessions, Display modules, The Chess.el library, Top
+@node Play sessions, Display modules, Displays, Top
@chapter Play sessions
@node Display modules, Ply sources, Play sessions, Top