r5141: Auto commit for Debian build
[reversi.git] / package.lisp
index c50d3ef57350c69a0abf8f099132517301c73877..5abbd7c1549695f6d38c01b0ecb6177cfa108ec4 100644 (file)
@@ -7,29 +7,29 @@
 ;;;;  Programer:      Kevin M. Rosenberg
 ;;;;  Date Started:   1 Nov 2001
 ;;;;
-;;;; $Id: package.lisp,v 1.2 2002/10/25 09:23:39 kevin Exp $
+;;;; $Id: package.lisp,v 1.6 2003/06/12 12:42:13 kevin Exp $
 ;;;;
-;;;; This file is Copyright (c) 2001-2002 by Kevin M. Rosenberg 
+;;;; This file is Copyright (c) 2001-2003 by Kevin M. Rosenberg 
 ;;;;
 ;;;; Reversi users are granted the rights to distribute and use this software
 ;;;; as governed by the terms of the Lisp Lesser GNU Public License
 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
 ;;;;***************************************************************************
 
+(in-package #:cl-user)
 
-(in-package :cl-user)
-
-(defpackage :reversi
-  (:use :common-lisp :common-lisp-user 
-       #+clisp :ext
-       #+clim :clim
-       #+clim :clim-sys)
+(defpackage #:reversi
+  (:use #:common-lisp
+       #+clisp #:ext
+       #+clim #:clim
+       #+clim #:clim-sys)
   #+clim
   (:shadowing-import-from :clim :pathname)
   #+clim
   (:shadowing-import-from :clim :interactive-stream-p)
   #+clim
   (:shadowing-import-from :clim :boolean)
+  
   (:export
    #:reversi
    #:random-reversi-series
@@ -43,6 +43,7 @@
    #:count-difference
    #:weighted-squares
    #:modified-weighted-squares
-   #+clim   #:greversi
-))
 
+   #:text-reversi
+   #+clim #:clim-reversi
+))