From 457119325441e2527de4528bd22108c6577dcc41 Mon Sep 17 00:00:00 2001 From: Nathan Froyd Subject: [PATCH 23/39] silence warning about PRINT-LETTER with #+nil --- src/lisp/structs.lisp | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/lisp/structs.lisp b/src/lisp/structs.lisp index 8c6e7d6..46a9d0c 100755 --- a/src/lisp/structs.lisp +++ b/src/lisp/structs.lisp @@ -12,7 +12,7 @@ ;; structs (defstruct (letter - (:print-function print-letter)) + #+nil (:print-function print-letter)) ;; represents a letter on the board. (value nil :type character) (neighbors #() :type simple-vector) -- 1.6.2