Minor reformatting
authorGary King <gwking@metabang.com>
Thu, 10 May 2007 21:52:47 +0000 (17:52 -0400)
committerGary King <gwking@metabang.com>
Thu, 10 May 2007 21:52:47 +0000 (17:52 -0400)
darcs-hash:20070510215247-3cc5d-1144e9c34ab638a6771ad2bbb1ae2c376d63b4ab.gz

dev/graphviz/graphviz-support.lisp

index 411b82d..aec3b99 100644 (file)
@@ -2,8 +2,6 @@
 
 #| simple-header
 
-$Id: graphviz-support.lisp,v 1.7 2005/06/21 20:51:51 moody Exp $
-
 Author: Gary King, Levente Mészáros, Attila Lendvai
 
 DISCUSSION
@@ -28,7 +26,8 @@ This file contains the stuff that does not depend on cl-graphviz.
                        (edge-labeler 'princ) 
                        (edge-formatter 'edge->dot)
                        &allow-other-keys)
-  (format stream "~A G {~%graph " (if (contains-undirected-edge-p g) "graph" "digraph"))
+  (format stream "~A G {~%graph " 
+         (if (contains-undirected-edge-p g) "graph" "digraph"))
   (format stream "[")
   (funcall graph-formatter g stream)
   (format stream "];")
@@ -362,7 +361,8 @@ B--D []
           (* 72 it)))
       (defmethod (setf ,actual-name) (value (thing ,type))
         "Set the attribute in pixels assuming 72 dpi"
-        (setf (dot-attribute-value ,attr thing) (coerce (/ value 72) 'double-float))))))
+        (setf (dot-attribute-value ,attr thing)
+             (coerce (/ value 72) 'double-float))))))
 
 (defpixel-inch-accessors width :width dot-vertex-mixin)
 (defpixel-inch-accessors height :height dot-vertex-mixin)
@@ -499,6 +499,7 @@ B--D []
 the program in *dot-path*."
   (let ((dot-string (graph->dot g nil))
         (dot-type (concatenate 'string "-T" (string-downcase (symbol-name type)))))
+    (declare (ignorable dot-string dot-type file-name))
     #+lispworks (with-open-stream
                     (s (sys:open-pipe (concatenate 'string *dot-path* " -Tpng -o" file-name)
                                       :direction :input))