diff options
| -rw-r--r-- | chess-algebraic.el | 2 | ||||
| -rw-r--r-- | chess-fen.el | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/chess-algebraic.el b/chess-algebraic.el index e9145e7..1c6f895 100644 --- a/chess-algebraic.el +++ b/chess-algebraic.el @@ -32,6 +32,8 @@ ;; chess-algebraic-regexp ;; +(eval-when-compile (require 'cl)) + (require 'chess-message) (defconst chess-algebraic-pieces-regexp "[RNBKQ]") diff --git a/chess-fen.el b/chess-fen.el index 8117afb..00eacd6 100644 --- a/chess-fen.el +++ b/chess-fen.el @@ -37,6 +37,8 @@ ;; relate to the game, not the position. ;; +(eval-when-compile (require 'cl)) + (defconst chess-fen-regexp "^\\([bnrqkpBNRQKP1-8]*/?\\)+ [bw] \\(-\\|[KQkq]+\\) \\(-\\|[1-8]\\)") |
