Fixing in-packages
authorGary King <gwking@metabang.com>
Thu, 11 May 2006 19:02:59 +0000 (15:02 -0400)
committerGary King <gwking@metabang.com>
Thu, 11 May 2006 19:02:59 +0000 (15:02 -0400)
darcs-hash:20060511190259-3cc5d-f71e22f65b3802905b02b01f96d7d5a76f8a0e90.gz

22 files changed:
dev/api.lisp
dev/copying.lisp
dev/examples/basic-graph-manipulation.lisp
dev/examples/class-hierarchy-to-dot.lisp
dev/examples/delicious-graphs.lisp
dev/graph-algorithms.lisp
dev/graph-and-variates.lisp
dev/graph-container.lisp
dev/graph-generation.lisp
dev/graph-matrix.lisp
dev/graph-metrics.lisp
dev/graph.lisp
dev/graphviz/graphviz-support-optional.lisp
dev/graphviz/graphviz-support.lisp
dev/macros.lisp
dev/package.lisp
unit-tests/package.lisp
unit-tests/test-connected-components.lisp
unit-tests/test-graph-algorithms.lisp
unit-tests/test-graph-container.lisp
unit-tests/test-graph-metrics.lisp
unit-tests/test-graph.lisp

index 5e0f672..8dccb44 100644 (file)
@@ -1,4 +1,4 @@
-(in-package cl-graph)
+(in-package #:cl-graph)
 
 ;;; ---------------------------------------------------------------------------
 
index e20961a..ad94e3a 100644 (file)
@@ -1,4 +1,4 @@
-(in-package cl-graph)
+(in-package #:cl-graph)
 
 (metacopy:defcopy-methods basic-vertex 
   :copy-all t)
index b93f5f0..8e60da2 100644 (file)
@@ -1,4 +1,4 @@
-(in-package cl-graph)
+(in-package #:cl-graph)
 
 ;;; make a simple graph
 (let ((g (make-container 'graph-container))) 
index e70380a..0cc5f32 100644 (file)
@@ -1,4 +1,4 @@
-(in-package metabang.graph)
+(in-package #:metabang.graph)
 
 (defun roots-and-child-function->graph (roots child-function max-depth)
   (let ((g (make-graph 'graph-container)))
index 7497bc1..9557bdf 100644 (file)
@@ -1,4 +1,4 @@
-(in-package metatilities)
+(in-package #:metatilities)
 
 #|
 color by tag weight
index 6230047..b3df889 100644 (file)
@@ -1,4 +1,4 @@
-(in-package metabang.graph)
+(in-package #:metabang.graph)
 
 ;;; ---------------------------------------------------------------------------
 ;;;
index 82d0e55..be43e6f 100644 (file)
@@ -1,4 +1,4 @@
-(in-package cl-user)
+(in-package #:cl-user)
 
 #+Ignore
 (shadowing-import 
index b5305d9..c856db0 100644 (file)
@@ -9,7 +9,7 @@ DISCUSSION
 
 |#
 
-(in-package metabang.graph)
+(in-package #:metabang.graph)
 
 ;;; ---------------------------------------------------------------------------
 ;;; class defs
index 1638596..cf983a0 100644 (file)
@@ -1,4 +1,4 @@
-(in-package metabang.graph)
+(in-package #:metabang.graph)
 
 (eval-when (:compile-toplevel :load-toplevel :execute)
   (export '(generate-gnp
index 30982cc..8f5bb4d 100644 (file)
@@ -16,7 +16,7 @@ CtF uses an adj list (vector of edges with lists) or adj matrix (vector with vec
 
 I think I'd like a numeric class and then a object one... maybe someday
 |#
-(in-package metabang.graph)
+(in-package #:metabang.graph)
 
 ;;; ---------------------------------------------------------------------------
 
index 4a70726..df4c395 100644 (file)
@@ -9,7 +9,7 @@ Author: Gary King
 DISCUSSION
 
 |#
-(in-package metabang.graph)
+(in-package #:metabang.graph)
 
 
 (defun vertex-degree-counts (g)
index 7143e6c..c41e463 100644 (file)
@@ -14,7 +14,7 @@ something is putting something on the vertexes plist's
 |#
 
 
-(in-package metabang.graph)
+(in-package #:metabang.graph)
 
 ;;; ---------------------------------------------------------------------------
 ;;; classes
index f281576..cdc1626 100644 (file)
@@ -13,7 +13,7 @@ loaded when cl-graphviz is available.
 
 |#
 
-(in-package metabang.graph)
+(in-package #:metabang.graph)
 
 ;; TODO these are hacks to be removed later,
 ;; the functionality should be provided by graph itself
index fd68bbb..a8e7ee7 100644 (file)
@@ -11,7 +11,7 @@ DISCUSSION
 This file contains the stuff that does not depend on cl-graphviz.
 
 |#
-(in-package metabang.graph)
+(in-package #:metabang.graph)
 
 ;;; ---------------------------------------------------------------------------
 ;
index e38681e..b03a638 100644 (file)
@@ -1,6 +1,6 @@
 ;;;-*- Mode: Lisp; Package: metabang.graph -*-
 
-(in-package metabang.graph)
+(in-package #:metabang.graph)
 
 ;;?? Gary King 2006-01-30: 
 ;;?? Face it, I have no idea why we need this anymore... but i'm sure we do
index 21c7f39..e117799 100644 (file)
@@ -7,7 +7,7 @@ Author: Gary King, et. al.
 DISCUSSION
 
 |#
-(in-package common-lisp-user)
+(in-package #:common-lisp-user)
 
 (defpackage #:cl-graph
   (:use #:common-lisp #:metatilities #:cl-containers 
index 750446c..e5441ab 100644 (file)
@@ -1,4 +1,4 @@
-(in-package common-lisp-user)
+(in-package #:common-lisp-user)
 
 (defpackage #:cl-graph-test
   (:use #:common-lisp #:cl-graph #:lift #:metatilities))
\ No newline at end of file
index 0b0b16e..3cf6e68 100644 (file)
@@ -1,4 +1,4 @@
-(in-package cl-graph-test)
+(in-package #:cl-graph-test)
 
 (deftestsuite test-connected-component ()
   ())
index 4502784..112fe38 100644 (file)
@@ -1,4 +1,4 @@
-(in-package cl-graph-test)
+(in-package #:cl-graph-test)
 
 (deftestsuite test-connected-components ()
   ())
index 95ba3c0..0c1657b 100644 (file)
@@ -1,4 +1,4 @@
-(in-package cl-graph-test)
+(in-package #:cl-graph-test)
 
 ;;; ---------------------------------------------------------------------------
 ;;; utilities
index f4d7216..3aa7a41 100644 (file)
@@ -1,4 +1,4 @@
-(in-package cl-graph-test)
+(in-package #:cl-graph-test)
 
 ;;; ---------------------------------------------------------------------------
 
index 2cd3d82..a30df12 100644 (file)
@@ -1,4 +1,4 @@
-(in-package cl-graph-test)
+(in-package #:cl-graph-test)
 
 #|
 (let ((g (make-container 'graph-container)))