diff options
| -rw-r--r-- | chess-algebraic.el | 2 | ||||
| -rw-r--r-- | chess-announce.el | 1 | ||||
| -rw-r--r-- | chess-autosave.el | 1 | ||||
| -rw-r--r-- | chess-common.el | 1 | ||||
| -rw-r--r-- | chess-display.el | 1 |
5 files changed, 6 insertions, 0 deletions
diff --git a/chess-algebraic.el b/chess-algebraic.el index f0ce90a..89ca0a6 100644 --- a/chess-algebraic.el +++ b/chess-algebraic.el @@ -32,6 +32,8 @@ ;; chess-algebraic-regexp ;; +(require 'chess-message) + (defconst chess-algebraic-pieces-regexp "[RNBKQ]") (defconst chess-algebraic-regexp diff --git a/chess-announce.el b/chess-announce.el index 8619e74..916b5c1 100644 --- a/chess-announce.el +++ b/chess-announce.el @@ -4,6 +4,7 @@ ;; (require 'chess-game) +(require 'chess-message) (chess-message-catalog 'english '((queen . "queen") diff --git a/chess-autosave.el b/chess-autosave.el index fe34433..52526e9 100644 --- a/chess-autosave.el +++ b/chess-autosave.el @@ -5,6 +5,7 @@ (require 'chess-game) (require 'chess-database) +(require 'chess-message) (defgroup chess-autosave nil "A special display that autosaves after each move." diff --git a/chess-common.el b/chess-common.el index 4fc26f6..c7e93e0 100644 --- a/chess-common.el +++ b/chess-common.el @@ -7,6 +7,7 @@ ;; (require 'chess-engine) +(require 'chess-message) (defvar chess-common-engine-name nil) (defvar chess-common-temp-files nil) diff --git a/chess-display.el b/chess-display.el index 93ba575..8e3ce2a 100644 --- a/chess-display.el +++ b/chess-display.el @@ -3,6 +3,7 @@ ;; Code shared by all chess displays ;; +(require 'chess-message) (require 'chess-module) (require 'chess-var) (require 'chess-input) |
